Skip to content

Commit

Permalink
VST3: Fix plug-in resize issue in Bitwig studio
Browse files Browse the repository at this point in the history
  • Loading branch information
hogliux committed Sep 7, 2017
1 parent 142bebb commit 56e6d69
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1031,7 +1031,7 @@ class JuceVST3EditController : public Vst::EditController,
#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

Expand Down

0 comments on commit 56e6d69

Please sign in to comment.