instance check: do not perform for gcode viewer

This commit is contained in:
David Kocik 2020-10-05 14:55:04 +02:00
parent 4d3190f988
commit 785839685e

View File

@ -580,12 +580,13 @@ int CLI::run(int argc, char **argv)
GUI::GUI_App *gui = new GUI::GUI_App();
#endif // ENABLE_GCODE_VIEWER
bool gui_single_instance_setting = gui->app_config->get("single_instance") == "1";
if (Slic3r::instance_check(argc, argv, gui_single_instance_setting)) {
//TODO: do we have delete gui and other stuff?
return -1;
}
if(!start_as_gcodeviewer) { // gcode viewer is currently not performing instance check
bool gui_single_instance_setting = gui->app_config->get("single_instance") == "1";
if (Slic3r::instance_check(argc, argv, gui_single_instance_setting)) {
//TODO: do we have delete gui and other stuff?
return -1;
}
}
// gui->autosave = m_config.opt_string("autosave");
GUI::GUI_App::SetInstance(gui);
#if ENABLE_GCODE_VIEWER