Bugfix: plater views were not refreshed after config wizard in simple mode

This commit is contained in:
Alessandro Ranellucci 2015-05-27 00:50:18 +02:00
parent 310212ed30
commit 0d08c1819b

View File

@ -599,6 +599,9 @@ sub load_config {
foreach my $tab (values %{$self->{options_tabs}}) {
$tab->load_config($config);
}
if ($self->{plater}) {
$self->{plater}->on_config_change($config);
}
}
sub config_wizard {