diff options
| author | Juan Linietsky | 2016-07-10 13:30:06 -0300 |
|---|---|---|
| committer | GitHub | 2016-07-10 13:30:06 -0300 |
| commit | bcf6491a86038559356729f28c98574c8086172f (patch) | |
| tree | 98f6b007f22035108000dace4837e22f3edd0715 /tools/editor/editor_node.cpp | |
| parent | 7bfb84af0816c3f0cd9c108ff401cc7dec2e4160 (diff) | |
| parent | c6a0b0dab30a6a57ba69fd831090d132d758634e (diff) | |
| download | godot-bcf6491a86038559356729f28c98574c8086172f.tar.gz godot-bcf6491a86038559356729f28c98574c8086172f.tar.zst godot-bcf6491a86038559356729f28c98574c8086172f.zip | |
Merge pull request #5621 from TheHX/issue-5616
Fix custom types showing on wrong dialogs
Diffstat (limited to 'tools/editor/editor_node.cpp')
| -rw-r--r-- | tools/editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 89d7f8f3c..c0887d7b7 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -2494,7 +2494,7 @@ void EditorNode::_menu_option_confirm(int p_option,bool p_confirmed) { #endif case RESOURCE_NEW: { - create_dialog->popup_centered_ratio(); + create_dialog->popup(true); } break; case RESOURCE_LOAD: { |
