mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 01:07:52 -06:00
Fix color of some texts on Linux with dark theme
Use Label{} instead of Text{} CURA-1143
This commit is contained in:
parent
9fe3eb4f01
commit
27e3f8b33f
4 changed files with 15 additions and 15 deletions
|
@ -22,17 +22,17 @@ UM.Dialog
|
|||
Row
|
||||
{
|
||||
spacing: UM.Theme.getSize("default_margin").width;
|
||||
Text
|
||||
Label
|
||||
{
|
||||
//: USB Printing dialog label, %1 is head temperature
|
||||
text: catalog.i18nc("@label","Extruder Temperature %1").arg(manager.extruderTemperature)
|
||||
}
|
||||
Text
|
||||
Label
|
||||
{
|
||||
//: USB Printing dialog label, %1 is bed temperature
|
||||
text: catalog.i18nc("@label","Bed Temperature %1").arg(manager.bedTemperature)
|
||||
}
|
||||
Text
|
||||
Label
|
||||
{
|
||||
text: "" + manager.error
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue