From e9a865c861ea054bedbf76395ff381c4180e36f8 Mon Sep 17 00:00:00 2001 From: kobewi Date: Sat, 18 Oct 2025 20:00:43 +0200 Subject: [PATCH] Fix scale factor applied twice --- scene/main/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/main/window.cpp b/scene/main/window.cpp index 48894759f33..6f037a71764 100644 --- a/scene/main/window.cpp +++ b/scene/main/window.cpp @@ -1786,7 +1786,7 @@ Size2 Window::_get_contents_minimum_size() const { } } - return max * content_scale_factor; + return max; } void Window::child_controls_changed() {