mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 13:34:01 -06:00
Elide labels next to checkboxes
To the available width, if there is a width. This won't work for right-to-left languages though... Contributes to issue CURA-4692.
This commit is contained in:
parent
616615067c
commit
064a8e6f6c
1 changed files with 4 additions and 3 deletions
|
@ -864,9 +864,10 @@ QtObject {
|
|||
}
|
||||
}
|
||||
label: Label {
|
||||
text: control.text;
|
||||
color: Theme.getColor("checkbox_text");
|
||||
font: Theme.getFont("default");
|
||||
text: control.text
|
||||
color: Theme.getColor("checkbox_text")
|
||||
font: Theme.getFont("default")
|
||||
elide: Text.ElideRight
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue