Merge pull request #46999 from bruvzg/mac_new_wnd

[macOS] Fix "New Window" opening copy of current project instead of Project Manager.
This commit is contained in:
Rémi Verschelde 2021-03-14 18:21:27 +01:00 committed by GitHub
commit 48708b8e3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5338,7 +5338,7 @@ void EditorNode::_global_menu_action(const Variant &p_id, const Variant &p_meta)
if (id == GLOBAL_NEW_WINDOW) {
if (OS::get_singleton()->get_main_loop()) {
List<String> args;
args.push_back("-e");
args.push_back("-p");
String exec = OS::get_singleton()->get_executable_path();
OS::ProcessID pid = 0;