mirror of
https://github.com/overte-org/overte.git
synced 2025-04-24 21:55:53 +02:00
Wrap labels
This commit is contained in:
parent
c1f5bac86a
commit
a51dd43dff
4 changed files with 22 additions and 3 deletions
|
@ -64,6 +64,7 @@ Original.CheckBox {
|
|||
text: control.text
|
||||
colorScheme: checkBox.colorScheme
|
||||
x: checkBox.boxSize / 2
|
||||
wrapMode: Text.Wrap
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -32,7 +32,13 @@ Preference {
|
|||
HiFiControls.Label {
|
||||
text: root.label + ":"
|
||||
colorScheme: hifi.colorSchemes.dark
|
||||
anchors.verticalCenter: dataComboBox.verticalCenter
|
||||
anchors {
|
||||
left: parent.left
|
||||
right: dataComboBox.left
|
||||
rightMargin: hifi.dimensions.contentSpacing.x
|
||||
verticalCenter: dataComboBox.verticalCenter
|
||||
}
|
||||
wrapMode: Text.Wrap
|
||||
}
|
||||
|
||||
HiFiControls.ComboBox {
|
||||
|
|
|
@ -30,7 +30,13 @@ Preference {
|
|||
Label {
|
||||
text: root.label + ":"
|
||||
colorScheme: hifi.colorSchemes.dark
|
||||
anchors.verticalCenter: slider.verticalCenter
|
||||
anchors {
|
||||
left: parent.left
|
||||
right: slider.left
|
||||
rightMargin: hifi.dimensions.contentSpacing.x
|
||||
verticalCenter: spinner.verticalCenter
|
||||
}
|
||||
wrapMode: Text.Wrap
|
||||
}
|
||||
|
||||
Slider {
|
||||
|
|
|
@ -29,7 +29,13 @@ Preference {
|
|||
Label {
|
||||
text: root.label + ":"
|
||||
colorScheme: hifi.colorSchemes.dark
|
||||
anchors.verticalCenter: spinner.verticalCenter
|
||||
anchors {
|
||||
left: parent.left
|
||||
right: spinner.left
|
||||
rightMargin: hifi.dimensions.contentSpacing.x
|
||||
verticalCenter: spinner.verticalCenter
|
||||
}
|
||||
wrapMode: Text.Wrap
|
||||
}
|
||||
|
||||
SpinBox {
|
||||
|
|
Loading…
Reference in a new issue