1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Linux: Fix bad window error when using the XEmbedComponent

The issue was reproducible by opening a plugin window in the AudioPluginHost.
This commit is contained in:
attila 2025-09-09 17:20:59 +02:00 committed by Attila Szarvas
parent d0167d8e3e
commit 47d441787c
2 changed files with 4 additions and 0 deletions

View file

@ -3190,6 +3190,7 @@ private:
Inner() : XEmbedComponent (true, true)
{
setOpaque (true);
setVisible (true);
addToDesktop (0);
}
};