From 96c111553a111229d5e10bc2b6f86c0eb62cd412 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 20 Jun 2019 15:30:24 +0200 Subject: [PATCH] Implement selectDefaultIntent Bit of a weird one. Contributes to issue CURA-6091. --- cura/Settings/IntentManager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/Settings/IntentManager.py b/cura/Settings/IntentManager.py index 876d41a1b4..5af32b2154 100644 --- a/cura/Settings/IntentManager.py +++ b/cura/Settings/IntentManager.py @@ -118,5 +118,5 @@ class IntentManager: application.getMachineManager().setQualityGroupByQualityType(quality_type) def selectDefaultIntent(self) -> None: - category, quality_type = self.defaultIntent() - self.selectIntent(category, quality_type) \ No newline at end of file + for extruder_stack in ExtruderManager.getInstance().getUsedExtruderStacks(): + extruder_stack.intent = self.defaultIntent() \ No newline at end of file