ConfigWizard: Make bundle installation more intelligent, fixes
This commit is contained in:
parent
aaa8f133c0
commit
31ea03feb0
11 changed files with 159 additions and 68 deletions
|
@ -61,7 +61,13 @@ bool check_unsaved_changes()
|
|||
%code%{ RETVAL=Slic3r::GUI::check_unsaved_changes(); %};
|
||||
|
||||
bool config_wizard(int fresh_start)
|
||||
%code%{ RETVAL=Slic3r::GUI::config_wizard(fresh_start != 0); %};
|
||||
%code%{
|
||||
try {
|
||||
RETVAL = Slic3r::GUI::config_wizard(fresh_start != 0);
|
||||
} catch (std::exception& e) {
|
||||
croak("%s\n", e.what());
|
||||
}
|
||||
%};
|
||||
|
||||
void open_preferences_dialog(int preferences_event)
|
||||
%code%{ Slic3r::GUI::open_preferences_dialog(preferences_event); %};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue