Do not prevent validation errors to launch the GUI

degen-loop-screen
Alessandro Ranellucci 2012-07-21 15:43:15 +02:00
parent f977aff82d
commit 7170b347db
1 changed files with 3 additions and 1 deletions

View File

@ -73,7 +73,9 @@ die $@ if $@ && $opt{gui};
Slic3r::Config->set($_ => $cli_options{$_}) for keys %cli_options;
# validate configuration, convert options like --print-center to arrayrefs, init extruders etc.
Slic3r::Config->validate;
# ignore errors if we're launching the GUI
eval { Slic3r::Config->validate };
die $@ unless $gui;
# save configuration
Slic3r::Config->save($opt{save}) if $opt{save};