mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 23:05:01 -06:00
Temperatures are now rounded + displayed with celcius sign
CURA-1036
This commit is contained in:
parent
1f9acf0b54
commit
1232ac7df5
1 changed files with 3 additions and 3 deletions
|
@ -274,7 +274,7 @@ Rectangle
|
|||
}
|
||||
Label
|
||||
{
|
||||
text: " " + Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[0]
|
||||
text: " " + Math.round(Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[0]) + "°C"
|
||||
}
|
||||
|
||||
|
||||
|
@ -284,7 +284,7 @@ Rectangle
|
|||
}
|
||||
Label
|
||||
{
|
||||
text: " " + Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[1]
|
||||
text: " " + Math.round(Cura.MachineManager.printerOutputDevices[0].hotendTemperatures[1]) + "°C"
|
||||
}
|
||||
|
||||
Label
|
||||
|
@ -293,7 +293,7 @@ Rectangle
|
|||
}
|
||||
Label
|
||||
{
|
||||
text: " " + Cura.MachineManager.printerOutputDevices[0].bedTemperature
|
||||
text: " " + Math.round(Cura.MachineManager.printerOutputDevices[0].bedTemperature) + "°C"
|
||||
}
|
||||
|
||||
// Spacers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue