Show print time in monitor tab

Contributes to CL-1040
This commit is contained in:
Ian Paschal 2018-11-08 10:49:22 +01:00
parent c5a9c6c6cc
commit 35ed234991

View file

@ -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