From d94956dd2355d2db9342ab956e50657d7af86c08 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 21 Aug 2017 13:51:36 +0200 Subject: [PATCH] Give time estimate a different text colour Apparently it needs to be highlit a bit more than the rest. Contributes to issue CURA-4148. --- resources/qml/Sidebar.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Sidebar.qml b/resources/qml/Sidebar.qml index 969848f456..1dc7fdc451 100755 --- a/resources/qml/Sidebar.qml +++ b/resources/qml/Sidebar.qml @@ -430,7 +430,7 @@ Rectangle anchors.left: parent.left anchors.bottom: parent.bottom font: UM.Theme.getFont("large") - color: UM.Theme.getColor("text_subtext") + color: UM.Theme.getColor("text_emphasis") text: (!base.printDuration || !base.printDuration.valid) ? catalog.i18nc("@label", "00h 00min") : base.printDuration.getDisplayString(UM.DurationFormat.Short) } }