From ae243919d592055d1e7806c8e47d847771da39d0 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 1 Sep 2025 00:22:39 +0200 Subject: [PATCH] No dynamic setResizable() for now Signed-off-by: falkTX --- dpf | 2 +- plugins/Common/IldaeilUI.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dpf b/dpf index ef75ef2..ab25198 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit ef75ef21874a749490debe92cc7a0605f1315232 +Subproject commit ab25198ea9f361145e3f8e694d90bd2a93ee830c diff --git a/plugins/Common/IldaeilUI.cpp b/plugins/Common/IldaeilUI.cpp index b086dfa..8e688e9 100644 --- a/plugins/Common/IldaeilUI.cpp +++ b/plugins/Common/IldaeilUI.cpp @@ -394,7 +394,7 @@ public: fShowingHostWindow = true; #if DISTRHO_UI_USER_RESIZABLE - getWindow().setResizable(fPluginHasResizableUI); + // getWindow().setResizable(fPluginHasResizableUI); #endif fPluginHostWindow.restart(); @@ -405,7 +405,7 @@ public: #endif { #if DISTRHO_UI_USER_RESIZABLE - getWindow().setResizable(true); + // getWindow().setResizable(true); #endif // fPluginHas* flags are updated in the next function @@ -429,7 +429,7 @@ public: carla_show_custom_ui(handle, fPluginId, false); #if DISTRHO_UI_USER_RESIZABLE - getWindow().setResizable(true); + // getWindow().setResizable(true); #endif }