Merge pull request #111797 from KoBeWi/c-c-combo_breaker

Fix scale factor applied twice
This commit is contained in:
Rémi Verschelde 2025-12-19 11:53:02 +01:00
commit e51c6e9fe8
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

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