mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Added more data to the print monitor screen
CURA-1068
This commit is contained in:
parent
c130d4d9cf
commit
8160f8d5e6
1 changed files with 46 additions and 4 deletions
|
@ -255,21 +255,63 @@ Rectangle
|
||||||
columnSpacing: UM.Theme.getSize("default_margin").width
|
columnSpacing: UM.Theme.getSize("default_margin").width
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: "Temperature 1: "
|
text: "Temperature 1:"
|
||||||
}
|
}
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: "" + Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[0]
|
text: " " + Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[0]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: "Temperature 2: "
|
text: "Temperature 2:"
|
||||||
}
|
}
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: "" + Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[1]
|
text: " " + Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[1]
|
||||||
|
}
|
||||||
|
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
text: "Bed Temperature:"
|
||||||
|
}
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
text: " " + Cura.MachineManager.printerOutputDevices[0].bedTemperature
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Spacers
|
||||||
|
Label { text: " "}
|
||||||
|
Label { text: " "}
|
||||||
|
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
text: "Printing Time:"
|
||||||
|
}
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
text: " " + Cura.MachineManager.printerOutputDevices[0].timeTotal
|
||||||
|
}
|
||||||
|
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
text: "Estimated time left:"
|
||||||
|
}
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
text: " " + (Cura.MachineManager.printerOutputDevices[0].timeTotal - Cura.MachineManager.printerOutputDevices[0].timeElapsed)
|
||||||
|
}
|
||||||
|
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
text: "Current Layer:"
|
||||||
|
}
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
text: " "
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue