From 35ed2349913e91d0f163e9aa1840228cf1c2736a Mon Sep 17 00:00:00 2001 From: Ian Paschal Date: Thu, 8 Nov 2018 10:49:22 +0100 Subject: [PATCH] Show print time in monitor tab Contributes to CL-1040 --- .../resources/qml/PrintJobInfoBlock.qml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml b/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml index 8c2c8f9121..a0de63ec74 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml @@ -168,6 +168,19 @@ Item { width: 0.5 * printJobPreview.width; } } + + Label { + id: totalTimeLabel; + anchors { + bottom: parent.bottom; + right: parent.right; + } + color: UM.Theme.getColor("text"); + elide: Text.ElideRight; + font: UM.Theme.getFont("default"); + opacity: 0.6; + text: printJob ? OutputDevice.formatDuration(printJob.timeTotal) : ""; + } } // Divider