diff options
author | Giganzo <158825920+Giganzo@users.noreply.github.com> | 2024-09-14 13:28:39 +0200 |
---|---|---|
committer | Giganzo <158825920+Giganzo@users.noreply.github.com> | 2024-09-17 14:35:18 +0200 |
commit | a863c385f7fe86c0ff9f10fd93c938e8abb140ca (patch) | |
tree | 3fbb6731ab720d148e8c30701fc54e26d1af0841 /scene | |
parent | 74de05a01c8716a42d4e3427f607d7bea76b35e5 (diff) | |
download | redot-engine-a863c385f7fe86c0ff9f10fd93c938e8abb140ca.tar.gz |
Fix FileDialog default size
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/file_dialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp index 1fc8586448..6f61295a91 100644 --- a/scene/gui/file_dialog.cpp +++ b/scene/gui/file_dialog.cpp @@ -1526,6 +1526,7 @@ FileDialog::FileDialog() { update_dir(); set_hide_on_ok(false); + set_size(Size2(640, 360)); if (register_func) { register_func(this); |