Fix for - MMU - Allow user to choose initial extruder but then also change extruder at layer height

1. Fix for detection of the DoubleSlicer mode => An extruder for the Height Range modifiers have to be ignored, if it's default.
2. OSX only: Extruder selection wasn't editable for Height Range modifiers
This commit is contained in:
YuSanka 2022-08-22 10:17:20 +02:00
parent 3b1f1d9444
commit 39788066e2
2 changed files with 3 additions and 1 deletions
src/slic3r/GUI

View file

@ -804,6 +804,7 @@ void Preview::update_layers_slider_mode()
for (const auto& range : object->layer_config_ranges)
if (range.second.has("extruder") &&
range.second.option("extruder")->getInt() != 0 && // extruder isn't default
range.second.option("extruder")->getInt() != extruder)
return false;
}