summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-05-28 15:04:20 +0200
committerRémi Verschelde <remi@verschelde.fr>2016-05-28 15:04:20 +0200
commitd9e86528933aac72ca5c80df7e0194dc9cfb7dca (patch)
treeddcc07357b579c157bc8c614c05b23f3a13efce3
parentb2013603b4b5d5a3de38672c3f3ac503f579e4c3 (diff)
parent6fefcfd46a7b37d06311819d390bbc87ecb044a7 (diff)
Merge pull request #4857 from akien-mga/pr-fix-pm-base-dir
Editor: Fix base dir when going back to project manager
-rw-r--r--tools/editor/editor_node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index af27f7d4a7..fedf738af4 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -2732,8 +2732,8 @@ void EditorNode::_menu_option_confirm(int p_option,bool p_confirmed) {
String exec = OS::get_singleton()->get_executable_path();
List<String> args;
- //args.push_back ( "-path" );
- //args.push_back (exec.get_base_dir() );
+ args.push_back("-path");
+ args.push_back(exec.get_base_dir());
args.push_back("-pm");
OS::ProcessID pid=0;