diff options
| author | Franklin Sobrinho | 2016-07-10 08:19:15 -0300 |
|---|---|---|
| committer | Franklin Sobrinho | 2016-07-10 08:19:15 -0300 |
| commit | c6a0b0dab30a6a57ba69fd831090d132d758634e (patch) | |
| tree | d0630afd3ca41039b71bcc3cdf1f3ce212945267 /tools/editor/editor_node.cpp | |
| parent | ae3d316798b6fbb36f73e7c2c0724dfac4f7ecad (diff) | |
| download | godot-c6a0b0dab30a6a57ba69fd831090d132d758634e.tar.gz godot-c6a0b0dab30a6a57ba69fd831090d132d758634e.tar.zst godot-c6a0b0dab30a6a57ba69fd831090d132d758634e.zip | |
Fix custom types showing on wrong dialogs
* The custom types are visible when the dialog is shown
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: { |
