From 3729e90b249911b89d91fb8d692ca618b518ab15 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 5 Jul 2019 13:06:27 +0200 Subject: [PATCH] Fix getting original intent category It's now a property so it doesn't need the brackets. Contributes to issue CURA-6597. --- cura/Settings/IntentManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Settings/IntentManager.py b/cura/Settings/IntentManager.py index 59cdc0115f..158381b189 100644 --- a/cura/Settings/IntentManager.py +++ b/cura/Settings/IntentManager.py @@ -125,7 +125,7 @@ class IntentManager(QObject): ## Apply intent on the stacks. @pyqtSlot(str, str) def selectIntent(self, intent_category: str, quality_type: str) -> None: - old_intent_category = self.getCurrentIntentCategory() + old_intent_category = self.getCurrentIntentCategory application = cura.CuraApplication.CuraApplication.getInstance() global_stack = application.getGlobalContainerStack() if global_stack is None: