diff options
| author | Rémi Verschelde | 2016-04-18 08:17:30 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-04-18 08:17:30 +0200 |
| commit | 3348dea78bba42ede7a6f607c1287bc000119b62 (patch) | |
| tree | 2ec5c7dfb9b43aae93202a1c70d9942228137647 | |
| parent | e566b17f91a7c8e341793d2b07a0127a92c4391f (diff) | |
| parent | e48c07750f0f0f5a4570546152360275b9af1866 (diff) | |
| download | godot-3348dea78bba42ede7a6f607c1287bc000119b62.tar.gz godot-3348dea78bba42ede7a6f607c1287bc000119b62.tar.zst godot-3348dea78bba42ede7a6f607c1287bc000119b62.zip | |
Merge pull request #4359 from neikeq/pr-issue-4351
Fix 'Quit to Project Manager' not stopping the running application
| -rw-r--r-- | tools/editor/editor_node.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index aa47e9762..316485f42 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -2672,6 +2672,7 @@ void EditorNode::_menu_option_confirm(int p_option,bool p_confirmed) { break; } + _menu_option_confirm(RUN_STOP,true); get_tree()->quit(); String exec = OS::get_singleton()->get_executable_path(); |
