1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +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*; using HandleFormat = NSView*;
#elif JUCE_LINUX || JUCE_BSD #elif JUCE_LINUX || JUCE_BSD
XEmbedComponent embeddedComponent { XEmbedComponentOptions{}.withWantsKeyboardFocus (true) XEmbedComponent embeddedComponent { XEmbedComponentOptions{}.withWantsKeyboardFocus (true)
.withAllowForeignWidgetToResizeComponent (false) }; .withAllowForeignWidgetToResizeComponent (false)
.withIgnoreXembedMapped() };
using HandleFormat = Window; using HandleFormat = Window;
#else #else
Component embeddedComponent; Component embeddedComponent;