From f608b0702f6787a1c3512dd76ddc49479a2f6526 Mon Sep 17 00:00:00 2001 From: escalonely Date: Mon, 31 May 2021 18:13:12 +0200 Subject: [PATCH] Set resize limit to 2560 x 1440 --- Source/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Main.cpp b/Source/Main.cpp index 67e83d6..61c654d 100644 --- a/Source/Main.cpp +++ b/Source/Main.cpp @@ -134,7 +134,7 @@ class PipeDreamerApplication : public juce::JUCEApplication // TODO: ResizableCornerComponent not working! setResizable(true, false); - setResizeLimits(594, 414, 1920, 1080); + setResizeLimits(594, 414, 2560, 1440); centreWithSize(getWidth(), getHeight()); setVisible(true);