Skip to content

Commit 04bba0f

Browse files
committed
VST3 Host: Linux: Map plugin window even with XEMBED_MAPPED unset
1 parent 9d45b5b commit 04bba0f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,8 @@ struct VST3PluginWindow final : public AudioProcessorEditor,
564564
using HandleFormat = NSView*;
565565
#elif JUCE_LINUX || JUCE_BSD
566566
XEmbedComponent embeddedComponent { XEmbedComponentOptions{}.withWantsKeyboardFocus (true)
567-
.withAllowForeignWidgetToResizeComponent (false) };
567+
.withAllowForeignWidgetToResizeComponent (false)
568+
.withIgnoreXembedMapped() };
568569
using HandleFormat = Window;
569570
#else
570571
Component embeddedComponent;

0 commit comments

Comments
 (0)