diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-15 12:13:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-15 12:13:33 +0200 |
commit | 6497a3fb50802d2a56f5d6a586a66da0f887dc04 (patch) | |
tree | 3cae8d4fa8f1cf255ead18aafcbb9e304f09f92e /modules/gdnative | |
parent | 0f369ac2c08872a80d28864c5c5cb47c81ec2c31 (diff) | |
parent | 526e060b7320de63501680549a5b586573e27a01 (diff) |
Merge pull request #40291 from hinlopen/dialog-size
Resize various dialogs
Diffstat (limited to 'modules/gdnative')
-rw-r--r-- | modules/gdnative/gdnative_library_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/gdnative_library_editor_plugin.cpp b/modules/gdnative/gdnative_library_editor_plugin.cpp index 1d4d188f23..fdd755845f 100644 --- a/modules/gdnative/gdnative_library_editor_plugin.cpp +++ b/modules/gdnative/gdnative_library_editor_plugin.cpp @@ -146,7 +146,7 @@ void GDNativeLibraryEditor::_on_item_button(Object *item, int column, int id) { } file_dialog->set_file_mode(mode); - file_dialog->popup_centered_ratio(); + file_dialog->popup_file_dialog(); } else if (id == BUTTON_CLEAR_LIBRARY) { _set_target_value(section, target, ""); |