Merge pull request #91971 from Delsin-Yu/WrapControls_ContentScaleFactor

Fix `Window.wrap_controls` does not account for the `content_scale_factor`
This commit is contained in:
Rémi Verschelde 2024-08-19 16:04:44 +02:00
commit 0ab62a128a
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

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