Browse Source

VST3: Fixed a resizing bug in Live on Windows

tags/2021-05-28
ed 5 years ago
parent
commit
4b92a111d3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp

+ 1
- 1
modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp View File

@@ -1462,7 +1462,7 @@ private:
#if JUCE_MAC
if (host.isWavelab() || host.isReaper())
#else
if (host.isWavelab())
if (host.isWavelab() || host.isAbletonLive())
#endif
setBounds (0, 0, w, h);
}


Loading…
Cancel
Save