mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 05:55:53 +08:00
Temperatures are now rounded + displayed with celcius sign
CURA-1036
This commit is contained in:
parent
1f9acf0b54
commit
1232ac7df5
@ -274,7 +274,7 @@ Rectangle
|
|||||||
}
|
}
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: " " + Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[0]
|
text: " " + Math.round(Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[0]) + "°C"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -284,7 +284,7 @@ Rectangle
|
|||||||
}
|
}
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: " " + Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[1]
|
text: " " + Math.round(Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[1]) + "°C"
|
||||||
}
|
}
|
||||||
|
|
||||||
Label
|
Label
|
||||||
@ -293,7 +293,7 @@ Rectangle
|
|||||||
}
|
}
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: " " + Cura.MachineManager.printerOutputDevices[0].bedTemperature
|
text: " " + Math.round(Cura.MachineManager.printerOutputDevices[0].bedTemperature) + "°C"
|
||||||
}
|
}
|
||||||
|
|
||||||
// Spacers
|
// Spacers
|
||||||
|
Loading…
x
Reference in New Issue
Block a user