commit 4c29ffa4e404c2e1b5c80ba0fcdd6e198353debe
parent c25e037b01e4254391f1f43305b4708946e4ba41
Author: Oli Larkin <[email protected]>
Date: Mon, 1 May 2023 04:03:28 +0200
Fix macOS app resizing (#226)
On macOS, resizing the UI would start moving it when it hit the limits. Increasing the limits prevents this. Might be a better fix in iPlug2 code, but this works for now.
Diffstat:
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/NeuralAmpModeler/config.h b/NeuralAmpModeler/config.h
@@ -28,10 +28,8 @@
#define PLUG_FPS 60
#define PLUG_SHARED_RESOURCES 0
#define PLUG_HOST_RESIZE 0
-#define PLUG_MIN_WIDTH 250
-#define PLUG_MIN_HEIGHT 150
-#define PLUG_MAX_WIDTH 1000
-#define PLUG_MAX_HEIGHT 600
+#define PLUG_MAX_WIDTH PLUG_WIDTH * 4
+#define PLUG_MAX_HEIGHT PLUG_HEIGHT * 4
#define AUV2_ENTRY NeuralAmpModeler_Entry
#define AUV2_ENTRY_STR "NeuralAmpModeler_Entry"