use special icon for cloud connected

This commit is contained in:
ChrisTerBeke 2018-12-04 16:35:09 +01:00
parent a9273ec2b5
commit 0887817f7d
3 changed files with 4 additions and 3 deletions

View file

@ -12,6 +12,7 @@ Cura.ExpandableComponent
id: machineSelector
property bool isNetworkPrinter: Cura.MachineManager.activeMachineNetworkKey != ""
property bool isCloudConnected: Cura.MachineManager.activeMachineCloudKey != ""
property bool isPrinterConnected: Cura.MachineManager.printerConnected
property var outputDevice: Cura.MachineManager.printerOutputDevices.length >= 1 ? Cura.MachineManager.printerOutputDevices[0] : null
@ -55,7 +56,7 @@ Cura.ExpandableComponent
leftMargin: UM.Theme.getSize("thick_margin").width
}
source: UM.Theme.getIcon("printer_connected")
source: isCloudConnected ? UM.Theme.getIcon("printer_cloud_connected") : UM.Theme.getIcon("printer_connected")
width: UM.Theme.getSize("printer_status_icon").width
height: UM.Theme.getSize("printer_status_icon").height
@ -63,7 +64,7 @@ Cura.ExpandableComponent
sourceSize.height: height
color: UM.Theme.getColor("primary")
visible: isNetworkPrinter && isPrinterConnected
visible: isNetworkPrinter && (isPrinterConnected || isCloudConnected)
// Make a themable circle in the background so we can change it in other themes
Rectangle