Browse Source

No dynamic setResizable() for now

Signed-off-by: falkTX <falktx@falktx.com>
main
falkTX 5 months ago
parent
commit
ae243919d5
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      dpf
  2. +3
    -3
      plugins/Common/IldaeilUI.cpp

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit ef75ef21874a749490debe92cc7a0605f1315232
Subproject commit ab25198ea9f361145e3f8e694d90bd2a93ee830c

+ 3
- 3
plugins/Common/IldaeilUI.cpp View File

@@ -394,7 +394,7 @@ public:
fShowingHostWindow = true; fShowingHostWindow = true;


#if DISTRHO_UI_USER_RESIZABLE #if DISTRHO_UI_USER_RESIZABLE
getWindow().setResizable(fPluginHasResizableUI);
// getWindow().setResizable(fPluginHasResizableUI);
#endif #endif


fPluginHostWindow.restart(); fPluginHostWindow.restart();
@@ -405,7 +405,7 @@ public:
#endif #endif
{ {
#if DISTRHO_UI_USER_RESIZABLE #if DISTRHO_UI_USER_RESIZABLE
getWindow().setResizable(true);
// getWindow().setResizable(true);
#endif #endif


// fPluginHas* flags are updated in the next function // fPluginHas* flags are updated in the next function
@@ -429,7 +429,7 @@ public:
carla_show_custom_ui(handle, fPluginId, false); carla_show_custom_ui(handle, fPluginId, false);


#if DISTRHO_UI_USER_RESIZABLE #if DISTRHO_UI_USER_RESIZABLE
getWindow().setResizable(true);
// getWindow().setResizable(true);
#endif #endif
} }




Loading…
Cancel
Save