mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Don't mark interface extruder as used when there are none
If there are 0 interface layers, the extruder doesn't necessarily gets used. Contributes to issue CURA-8915.
This commit is contained in:
parent
5cc8fdeb7a
commit
3534894eeb
1 changed files with 2 additions and 1 deletions
|
@ -268,7 +268,8 @@ class ExtruderManager(QObject):
|
|||
used_adhesion_extruders.add("skirt_brim_extruder_nr") # There's a brim or prime tower brim.
|
||||
if adhesion_type == "raft":
|
||||
used_adhesion_extruders.add("raft_base_extruder_nr")
|
||||
used_adhesion_extruders.add("raft_interface_extruder_nr")
|
||||
if global_stack.getProperty("raft_interface_layers", "value") > 0:
|
||||
used_adhesion_extruders.add("raft_interface_extruder_nr")
|
||||
if global_stack.getProperty("raft_surface_layers", "value") > 0:
|
||||
used_adhesion_extruders.add("raft_surface_extruder_nr")
|
||||
for extruder_setting in used_adhesion_extruders:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue