diff --git a/lib/Slic3r/GUI/Plater/ObjectPartsPanel.pm b/lib/Slic3r/GUI/Plater/ObjectPartsPanel.pm index 477fb85732..aab6f5c981 100644 --- a/lib/Slic3r/GUI/Plater/ObjectPartsPanel.pm +++ b/lib/Slic3r/GUI/Plater/ObjectPartsPanel.pm @@ -268,10 +268,15 @@ sub selection_changed { $self->{canvas}->volumes->[ $itemData->{volume_id} ]{selected} = 1; } $self->{btn_delete}->Enable; - $self->{optgroup_movers}->enable; # attach volume config to settings panel my $volume = $self->{model_object}->volumes->[ $itemData->{volume_id} ]; + + if ($volume->modifier) { + $self->{optgroup_movers}->enable; + } else { + $self->{optgroup_movers}->disable; + } $config = $volume->config; $self->{staticbox}->SetLabel('Part Settings');