mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 02:19:06 +08:00
Merge pull request #4755 from Ultimaker/CL-1040_show_print_time_in_monitor
CL-1140 Show print time in monitor tab
This commit is contained in:
commit
69c9ffaf61
@ -168,6 +168,18 @@ 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");
|
||||||
|
text: printJob ? OutputDevice.formatDuration(printJob.timeTotal) : "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Divider
|
// Divider
|
||||||
|
Loading…
x
Reference in New Issue
Block a user