From 56e6d69364c5eb19bf2a7517a2e9d622e01dc23f Mon Sep 17 00:00:00 2001 From: hogliux Date: Thu, 7 Sep 2017 15:19:38 +0100 Subject: [PATCH] VST3: Fix plug-in resize issue in Bitwig studio --- modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp index bea056cfd7..93302ce8b5 100644 --- a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp +++ b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp @@ -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