diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-07-26 20:31:30 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-07-27 12:55:16 -0500 |
commit | 6f333ba2bfb0d16395f47f1ea033d1e1496f67ee (patch) | |
tree | 78116e87ccc596a0918455ebb86609ee277039ac /main | |
parent | abb44676e0a8e2f403dd6889662ea15c3e3bd784 (diff) |
Allow setting a window stretch scale below 1.0
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 73950f3471..8c8e1b467a 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); |