Keep crash handler status on editor restart
This commit is contained in:
parent
222e489dfd
commit
116f03a1b6
1 changed files with 7 additions and 0 deletions
|
@ -1800,9 +1800,16 @@ void EditorNode::restart_editor() {
|
||||||
_exit_editor(EXIT_SUCCESS);
|
_exit_editor(EXIT_SUCCESS);
|
||||||
|
|
||||||
List<String> args;
|
List<String> args;
|
||||||
|
|
||||||
args.push_back("--path");
|
args.push_back("--path");
|
||||||
args.push_back(ProjectSettings::get_singleton()->get_resource_path());
|
args.push_back(ProjectSettings::get_singleton()->get_resource_path());
|
||||||
|
|
||||||
args.push_back("-e");
|
args.push_back("-e");
|
||||||
|
|
||||||
|
if (OS::get_singleton()->is_disable_crash_handler()) {
|
||||||
|
args.push_back("--disable-crash-handler");
|
||||||
|
}
|
||||||
|
|
||||||
if (!to_reopen.is_empty()) {
|
if (!to_reopen.is_empty()) {
|
||||||
args.push_back(to_reopen);
|
args.push_back(to_reopen);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue