From 6f333ba2bfb0d16395f47f1ea033d1e1496f67ee Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Tue, 26 Jul 2022 20:31:30 -0500 Subject: [PATCH] Allow setting a window stretch scale below 1.0 --- main/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/main.cpp b/main/main.cpp index 73950f34713..8c8e1b467a5 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2576,7 +2576,7 @@ bool Main::start() { PropertyInfo(Variant::FLOAT, "display/window/stretch/scale", PROPERTY_HINT_RANGE, - "1.0,8.0,0.1")); + "0.5,8.0,0.01")); sml->set_auto_accept_quit(GLOBAL_DEF("application/config/auto_accept_quit", true)); sml->set_quit_on_go_back(GLOBAL_DEF("application/config/quit_on_go_back", true)); GLOBAL_DEF_BASIC("gui/common/snap_controls_to_pixels", true);