mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-22 10:21:39 -07: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 {
|
label: Label {
|
||||||
text: control.text;
|
text: control.text
|
||||||
color: Theme.getColor("checkbox_text");
|
color: Theme.getColor("checkbox_text")
|
||||||
font: Theme.getFont("default");
|
font: Theme.getFont("default")
|
||||||
|
elide: Text.ElideRight
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue