1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

VST3 Host: Linux: Map plugin window even with XEMBED_MAPPED unset

This commit is contained in:
attila 2026-01-08 00:07:32 +01:00 committed by Attila Szarvas
parent 9d45b5bc30
commit 04bba0f2be

View file

@ -564,7 +564,8 @@ private:
using HandleFormat = NSView*;
#elif JUCE_LINUX || JUCE_BSD
XEmbedComponent embeddedComponent { XEmbedComponentOptions{}.withWantsKeyboardFocus (true)
.withAllowForeignWidgetToResizeComponent (false) };
.withAllowForeignWidgetToResizeComponent (false)
.withIgnoreXembedMapped() };
using HandleFormat = Window;
#else
Component embeddedComponent;