From fcc914cf0d2aab3c7c6ae31ceaf10fc2392b4986 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 27 Sep 2017 17:28:32 +0200 Subject: [PATCH] Make material colour indication a circle instead of square The rest of them are circles. This one should be one too. --- resources/qml/PrintMonitor.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml index 931a8ae23f..f9c6aff7ed 100644 --- a/resources/qml/PrintMonitor.qml +++ b/resources/qml/PrintMonitor.qml @@ -164,6 +164,7 @@ Column id: materialColor width: materialName.height * 0.75 height: materialName.height * 0.75 + radius: width / 2 color: (connectedPrinter != null && connectedPrinter.materialColors[index] != null && connectedPrinter.materialIds[index] != "") ? connectedPrinter.materialColors[index] : "#00000000" border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("lining")