From 25fb3fed162e629485048b4384bc3aa997f678bd Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Tue, 14 Feb 2017 10:38:33 +0100 Subject: [PATCH] Add missing label color One of the labels in the newly redesigned printmonitor is lacking a color, thus making the hotend temperature unstylable. --- resources/qml/PrintMonitor.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml index 7a150a1757..6fffa0f902 100644 --- a/resources/qml/PrintMonitor.qml +++ b/resources/qml/PrintMonitor.qml @@ -97,6 +97,7 @@ Column Label //Temperature indication. { text: (connectedPrinter != null && connectedPrinter.hotendTemperatures[index] != null) ? Math.round(connectedPrinter.hotendTemperatures[index]) + "°C" : "" + color: UM.Theme.getColor("text") font: UM.Theme.getFont("large") anchors.right: parent.right anchors.top: parent.top