From 4b92a111d3d30618db89c5f0d80df18eeab935c6 Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 9 Sep 2019 17:07:35 +0100 Subject: [PATCH] VST3: Fixed a resizing bug in Live on Windows --- 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 642aff6b16..cbc666d27f 100644 --- a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp +++ b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp @@ -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); }