diff --git a/plugins/PerObjectSettingsTool/ToolBarButton.qml b/plugins/PerObjectSettingsTool/ToolBarButton.qml index 5a96d7cd19..0aa35c3a52 100644 --- a/plugins/PerObjectSettingsTool/ToolBarButton.qml +++ b/plugins/PerObjectSettingsTool/ToolBarButton.qml @@ -54,7 +54,7 @@ Button } return UM.Theme.getColor("toolbar_background") } - Behavior on color { ColorAnimation { duration: 50; } } + Behavior on color { ColorAnimation { duration: 50 } } border.width: (base.hasOwnProperty("needBorder") && base.needBorder) ? UM.Theme.getSize("default_lining").width : 0 border.color: base.checked ? UM.Theme.getColor("icon") : UM.Theme.getColor("lining") diff --git a/resources/qml/Preferences/MachinesPage.qml b/resources/qml/Preferences/MachinesPage.qml index aa5b275501..fc229cab7b 100644 --- a/resources/qml/Preferences/MachinesPage.qml +++ b/resources/qml/Preferences/MachinesPage.qml @@ -38,7 +38,7 @@ UM.ManagementPage { id: activateMenuButton text: catalog.i18nc("@action:button", "Activate"); - icon.name: "list-activate"; + icon.name: "list-activate" enabled: base.currentItem != null && base.currentItem.id != Cura.MachineManager.activeMachine.id onClicked: Cura.MachineManager.setActiveMachine(base.currentItem.id) },