From 1044015465d7ff79319f76606a250be6d8459ab8 Mon Sep 17 00:00:00 2001 From: jules Date: Thu, 20 Jul 2017 16:51:21 +0100 Subject: [PATCH] Added an extra forced resize callback in linux VST hosting to avoid some repaint issues --- .../format_types/juce_VSTPluginFormat.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp index e98f32d613..11e311d684 100644 --- a/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp @@ -2218,6 +2218,10 @@ public: { closePluginWindow(); openPluginWindow(); + + #if JUCE_LINUX + componentMovedOrResized (true, true); + #endif } #endif