Keep debug & verbose options after loading project from project manager

This commit is contained in:
PouleyKetchoupp
2020-07-09 09:32:42 +02:00
parent d629b17291
commit b2d27214aa
4 changed files with 15 additions and 0 deletions

View File

@@ -2004,6 +2004,14 @@ void ProjectManager::_open_selected_projects() {
args.push_back("--editor");
if (OS::get_singleton()->is_stdout_debug_enabled()) {
args.push_back("--debug");
}
if (OS::get_singleton()->is_stdout_verbose()) {
args.push_back("--verbose");
}
if (OS::get_singleton()->is_disable_crash_handler()) {
args.push_back("--disable-crash-handler");
}