mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
Fix binding of extruder enable checkbox if there is no active stack
There was a typo there. Contributes to issue CURA-7501.
This commit is contained in:
parent
452fe3972f
commit
8f9e0da400
2 changed files with 2 additions and 3 deletions
|
@ -140,8 +140,7 @@ class CloudPackageChecker(QObject):
|
||||||
sync_message = Message(self._i18n_catalog.i18nc(
|
sync_message = Message(self._i18n_catalog.i18nc(
|
||||||
"@info:generic",
|
"@info:generic",
|
||||||
"Do you want to sync material and software packages with your account?"),
|
"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", ),
|
title = self._i18n_catalog.i18nc("@info:title", "Changes detected from your Ultimaker account", ))
|
||||||
lifetime = 0)
|
|
||||||
sync_message.addAction("sync",
|
sync_message.addAction("sync",
|
||||||
name = self._i18n_catalog.i18nc("@action:button", "Sync"),
|
name = self._i18n_catalog.i18nc("@action:button", "Sync"),
|
||||||
icon = "",
|
icon = "",
|
||||||
|
|
|
@ -231,7 +231,7 @@ Item
|
||||||
target: enabledCheckbox
|
target: enabledCheckbox
|
||||||
property: "checked"
|
property: "checked"
|
||||||
value: Cura.MachineManager.activeStack.isEnabled
|
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.
|
/* Use a MouseArea to process the click on this checkbox.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue