1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Fix scale factor applied twice

This commit is contained in:
kobewi
2025-10-18 20:00:43 +02:00
parent 7864ac8019
commit e9a865c861

View File

@@ -1786,7 +1786,7 @@ Size2 Window::_get_contents_minimum_size() const {
} }
} }
return max * content_scale_factor; return max;
} }
void Window::child_controls_changed() { void Window::child_controls_changed() {