From fe80eb5e5a55f510630514eb91ba15e4d889eda2 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 18 May 2020 00:01:28 +0100 Subject: [PATCH] Ignore Carla-VST resize requests if not using embed gui Signed-off-by: falkTX --- source/plugin/carla-vst.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/plugin/carla-vst.cpp b/source/plugin/carla-vst.cpp index 7ae914f6f..949e59886 100644 --- a/source/plugin/carla-vst.cpp +++ b/source/plugin/carla-vst.cpp @@ -747,6 +747,8 @@ protected: void handleUiResize(const int16_t width, const int16_t height) { + if (kIsUsingUILauncher) + return; fVstRect.right = width; fVstRect.bottom = height; hostCallback(audioMasterSizeWindow, width, height);