From 49276db073c385c6f6be6f561556f28fe9c1082d Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 19 Sep 2019 09:39:52 +0200 Subject: [PATCH] Fix display of intent in profile selection CURA-6598 --- cura/Settings/MachineManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index ac44163898..b28d0fa27c 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -618,7 +618,7 @@ class MachineManager(QObject): if not self._active_container_stack: return "" - intent_category = self._active_container_stack.intent.getMetaDataEntry("intent_category") + intent_category = self._active_container_stack.intent.getMetaDataEntry("intent_category", "default") return intent_category ## Returns whether there is anything unsupported in the current set-up.