Bugfix: random failure to load presets. #600

This commit is contained in:
Alessandro Ranellucci 2012-08-09 00:41:03 +02:00
parent 927b7ce937
commit 2bf219a637
3 changed files with 12 additions and 4 deletions

View file

@ -182,7 +182,8 @@ sub on_select_preset {
eval {
local $SIG{__WARN__} = Slic3r::GUI::warning_catcher($self);
foreach my $opt_key (@{$self->{options}}) {
$self->{config}->set($opt_key, $preset_config->get($opt_key));
$self->{config}->set($opt_key, $preset_config->get($opt_key))
if $preset_config->has($opt_key);
}
};
Slic3r::GUI::catch_error($self);
@ -211,7 +212,8 @@ sub get_preset_config {
# apply preset values on top of defaults
my $external_config = Slic3r::Config->load($preset->{file});
$config->set($_, $external_config->get($_)) for @{$self->{options}};
$config->set($_, $external_config->get($_))
for grep $external_config->has($_), @{$self->{options}};
}
return $config;