mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 06:23:59 -06:00
Merge branch 'patch-1' of github.com:asteroids1975/Cura
CURA-10400
This commit is contained in:
commit
e099304fce
1 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ Item
|
|||
UM.Label
|
||||
{
|
||||
id: bedTargetTemperature
|
||||
text: printerModel != null ? printerModel.targetBedTemperature + "°C" : ""
|
||||
text: printerModel != null ? Math.round(printerModel.targetBedTemperature) + "°C" : ""
|
||||
font: UM.Theme.getFont("default_bold")
|
||||
color: UM.Theme.getColor("text_inactive")
|
||||
anchors.right: parent.right
|
||||
|
@ -66,7 +66,7 @@ Item
|
|||
UM.Label
|
||||
{
|
||||
id: bedCurrentTemperature
|
||||
text: printerModel != null ? printerModel.bedTemperature + "°C" : ""
|
||||
text: printerModel != null ? Math.round(printerModel.bedTemperature) + "°C" : ""
|
||||
font: UM.Theme.getFont("large_bold")
|
||||
anchors.right: bedTargetTemperature.left
|
||||
anchors.top: parent.top
|
||||
|
@ -293,4 +293,4 @@ Item
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue