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 43d93a388a..640c374b05 100644 --- a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp +++ b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp @@ -1567,8 +1567,15 @@ private: { lastBounds = b; - const ScopedValueSetter resizingParentSetter (resizingParent, true); - resizeHostWindow(); + { + const ScopedValueSetter resizingParentSetter (resizingParent, true); + resizeHostWindow(); + } + + #if JUCE_LINUX + if (getHostType().isBitwigStudio()) + repaint(); + #endif } }