From 48134619ebe9f03b54c8b6b19cbccbc431beead4 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 14 Nov 2016 10:31:11 +0100 Subject: [PATCH] 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. --- cura/Settings/ExtruderManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py index 22a335aae6..5517830141 100644 --- a/cura/Settings/ExtruderManager.py +++ b/cura/Settings/ExtruderManager.py @@ -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()