1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Merge pull request #70863 from bruvzg/win_init_min

Set main window min. size via Window object instead of DisplayServer to preserve it during window updates.
This commit is contained in:
Rémi Verschelde
2023-01-09 23:08:52 +01:00
4 changed files with 9 additions and 6 deletions

View File

@@ -2769,10 +2769,6 @@ bool Main::start() {
DisplayServer::get_singleton()->window_set_title(appname);
#endif
// Define a very small minimum window size to prevent bugs such as GH-37242.
// It can still be overridden by the user in a script.
DisplayServer::get_singleton()->window_set_min_size(Size2i(64, 64));
bool snap_controls = GLOBAL_GET("gui/common/snap_controls_to_pixels");
sml->get_root()->set_snap_controls_to_pixels(snap_controls);