mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
Fix checking if we're single extrusion
We are single extrusion if the extruder count is less than or equal to 1, like in other places throughout Cura. Contributes to issue CURA-2625.
This commit is contained in:
parent
b8223e3e75
commit
48134619eb
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ class ExtruderManager(QObject):
|
|||
global_stack = UM.Application.getInstance().getGlobalContainerStack()
|
||||
container_registry = UM.Settings.ContainerRegistry.getInstance()
|
||||
|
||||
if global_stack.getProperty("machine_extruder_count", "value") == 0: #For single extrusion.
|
||||
if global_stack.getProperty("machine_extruder_count", "value") <= 1: #For single extrusion.
|
||||
return [global_stack]
|
||||
|
||||
used_extruder_stack_ids = set()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue