mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-31 00:52:51 +00:00
Handle read_from_file() exceptions in GUI. #1619
This commit is contained in:
@@ -383,7 +383,10 @@ sub load_file {
|
||||
$process_dialog->Pulse;
|
||||
|
||||
local $SIG{__WARN__} = Slic3r::GUI::warning_catcher($self);
|
||||
my $model = Slic3r::Model->read_from_file($input_file);
|
||||
|
||||
my $model = eval { Slic3r::Model->read_from_file($input_file) };
|
||||
Slic3r::GUI::show_error($self, $@) if $@;
|
||||
|
||||
$self->load_model_object($_) for @{$model->objects};
|
||||
|
||||
$process_dialog->Destroy;
|
||||
|
||||
Reference in New Issue
Block a user