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:
parent
9d45b5bc30
commit
04bba0f2be
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue