Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-06-15 19:11:36 +0300
committerbubnikv <bubnikv@gmail.com>2017-06-15 19:11:36 +0300
commitaa54c3402b300f3e192189c8d5d8f82e4ada15b5 (patch)
tree9712fdb8028cb8e133cbe78876713122b77b7896
parentb724d789fd6769fdf868a987ca5573bb0bf23eaa (diff)
Disable the "split" button when there is no volume selected.version_1.35.4
-rw-r--r--lib/Slic3r/GUI/Plater/ObjectPartsPanel.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Slic3r/GUI/Plater/ObjectPartsPanel.pm b/lib/Slic3r/GUI/Plater/ObjectPartsPanel.pm
index a362f7ad1..42836fb3c 100644
--- a/lib/Slic3r/GUI/Plater/ObjectPartsPanel.pm
+++ b/lib/Slic3r/GUI/Plater/ObjectPartsPanel.pm
@@ -261,7 +261,7 @@ sub selection_changed {
}
# disable things as if nothing is selected
- $self->{'btn_' . $_}->Disable for (qw(delete move_up move_down));
+ $self->{'btn_' . $_}->Disable for (qw(delete move_up move_down split));
$self->{settings_panel}->disable;
$self->{settings_panel}->set_config(undef);