mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 14:44:13 -06:00
Show print time in monitor tab
Contributes to CL-1040
This commit is contained in:
parent
c5a9c6c6cc
commit
35ed234991
1 changed files with 13 additions and 0 deletions
|
@ -168,6 +168,19 @@ Item {
|
||||||
width: 0.5 * printJobPreview.width;
|
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
|
// Divider
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue