You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Set window size after setting new limits
Otherwise this can fail as the size may not fit into current limits. This is problematic at least on X11.
This commit is contained in:
@@ -651,9 +651,9 @@ void Window::_update_window_size() {
|
||||
DisplayServer::get_singleton()->window_set_min_size(Size2i(), window_id);
|
||||
}
|
||||
|
||||
DisplayServer::get_singleton()->window_set_size(size, window_id);
|
||||
DisplayServer::get_singleton()->window_set_max_size(max_size_valid ? max_size : Size2i(), window_id);
|
||||
DisplayServer::get_singleton()->window_set_min_size(size_limit, window_id);
|
||||
DisplayServer::get_singleton()->window_set_size(size, window_id);
|
||||
}
|
||||
|
||||
//update the viewport
|
||||
|
||||
Reference in New Issue
Block a user