diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-06-08 11:38:31 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2017-06-08 11:38:31 +0700 |
commit | 6b7021ad90cdfbadc456de16e0b6afc6f5217e16 (patch) | |
tree | c2d7906d3462bfaec8c425556e2b8aae99df8c6b /editor | |
parent | 871ceeb0fe219072ae708d4d4397e8ae66873386 (diff) |
Fix unsaved scene not running after save
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index d139cd0d66..c71b3fdafb 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -1983,7 +1983,7 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) { } _menu_option(FILE_SAVE_AS_SCENE); - _menu_option_confirm(FILE_SAVE_AND_RUN, true); + _menu_option_confirm(FILE_SAVE_AND_RUN, false); } break; case FILE_SAVE_OPTIMIZED: { |