1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

VST3: Fix plug-in resize issue in Bitwig studio

This commit is contained in:
hogliux 2017-09-07 15:19:38 +01:00
parent 142bebbb92
commit 56e6d69364

View file

@ -1031,7 +1031,7 @@ private:
#if JUCE_WINDOWS
setSize (w, h);
#else
if (owner.macHostWindow != nullptr && ! (host.isWavelab() || host.isReaper()))
if (owner.macHostWindow != nullptr && ! (host.isWavelab() || host.isReaper() || host.isBitwigStudio()))
juce::setNativeHostWindowSizeVST (owner.macHostWindow, this, w, h, owner.isNSView);
#endif