From 8f9e0da40013925b11314daa67e09e63dd6c3300 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 16 Oct 2020 14:03:59 +0200 Subject: [PATCH] Fix binding of extruder enable checkbox if there is no active stack There was a typo there. Contributes to issue CURA-7501. --- plugins/Toolbox/src/CloudSync/CloudPackageChecker.py | 3 +-- resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py b/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py index 7834c25cfe..f864e2ee8d 100644 --- a/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py +++ b/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py @@ -140,8 +140,7 @@ class CloudPackageChecker(QObject): sync_message = Message(self._i18n_catalog.i18nc( "@info:generic", "Do you want to sync material and software packages with your account?"), - title = self._i18n_catalog.i18nc("@info:title", "Changes detected from your Ultimaker account", ), - lifetime = 0) + title = self._i18n_catalog.i18nc("@info:title", "Changes detected from your Ultimaker account", )) sync_message.addAction("sync", name = self._i18n_catalog.i18nc("@action:button", "Sync"), icon = "", diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml index b9b4d3261a..c4fa83a5b8 100644 --- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml @@ -231,7 +231,7 @@ Item target: enabledCheckbox property: "checked" value: Cura.MachineManager.activeStack.isEnabled - when: Cura.MachineManger.activeStack != null + when: Cura.MachineManager.activeStack != null } /* Use a MouseArea to process the click on this checkbox.