From 64e3a99ad307bd417d9413e300a2393fc02eac10 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 19 Jun 2019 16:52:54 +0200 Subject: [PATCH] Also select correct quality level on the stack when changing intent Contributes to issue CURA-6091. --- cura/Settings/IntentManager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/Settings/IntentManager.py b/cura/Settings/IntentManager.py index 3fb2657b00..3c5a447866 100644 --- a/cura/Settings/IntentManager.py +++ b/cura/Settings/IntentManager.py @@ -89,6 +89,7 @@ class IntentManager: def selectIntent(self, intent_category, quality_type): for extruder in all_extruders: extruder_stack.intent = ContainerRegistry.getInstance().findContainers(type = "intent", definition = current_definition_id, variant = extruder_nozzle_id, material = extruder_material_id)[0] + extruder_stack.quality = ContainerRegistry.getInstance().findContainers(type = "quality", quality_type = quality_type) def selectDefaultIntent(self) -> None: category, quality_type = self.defaultIntent()