Browse Source

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

Alessandro Ranellucci 9 years ago
parent
commit
0d08c1819b
1 changed files with 3 additions and 0 deletions
  1. 3 0
      lib/Slic3r/GUI/MainFrame.pm

+ 3 - 0
lib/Slic3r/GUI/MainFrame.pm

@@ -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 {