diff --git a/resources/qml/Menus/PrinterStatusIcon.qml b/resources/qml/Menus/PrinterStatusIcon.qml index f66834d0c0..6ff6b07af8 100644 --- a/resources/qml/Menus/PrinterStatusIcon.qml +++ b/resources/qml/Menus/PrinterStatusIcon.qml @@ -6,11 +6,13 @@ import QtQuick 2.2 import UM 1.2 as UM import Cura 1.0 as Cura -Item { +Item +{ property var status: "disconnected" width: childrenRect.width height: childrenRect.height - UM.RecolorImage { + UM.RecolorImage + { id: statusIcon width: UM.Theme.getSize("printer_status_icon").width height: UM.Theme.getSize("printer_status_icon").height diff --git a/resources/qml/Menus/PrinterTypeMenu.qml b/resources/qml/Menus/PrinterTypeMenu.qml index 0cb98bc1aa..28bdca54d9 100644 --- a/resources/qml/Menus/PrinterTypeMenu.qml +++ b/resources/qml/Menus/PrinterTypeMenu.qml @@ -18,7 +18,8 @@ Menu id: printerTypeInstantiator model: outputDevice != null ? outputDevice.connectedPrintersTypeCount : [] - MenuItem { + MenuItem + { text: modelData.machine_type checkable: true checked: Cura.MachineManager.activeMachineDefinitionName == modelData.machine_type