diff options
author | Manish Sharma <man.god96@gmail.com> | 2016-08-18 09:49:07 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-18 09:49:07 +0530 |
commit | 82728b3384b31c98a7b467c43ebb0d5325a29549 (patch) | |
tree | 098f2d9b02f15c1e5b75190f2fc9fc643225280b | |
parent | 56fa741b7a729bd5a00cff17e4382af547de92ad (diff) |
Fixed running the game before saving scene
Closes #6184
-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 85c560bf9d..c37c0dc463 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -1228,7 +1228,7 @@ void EditorNode::_dialog_action(String p_file) { //_save_scene(p_file); _save_scene_with_preview(p_file); - _run(false); + _run(true); } } break; |