aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2019-08-06 14:34:33 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2019-08-06 13:25:41 +0000
commitfceb229652ccde5f22e1875025327d6c7f412f36 (patch)
tree683ff23848e187374a47467f948e3e11af790613 /share/qtcreator
parent1b1d5b953a6407ae3332ad88492ca3907e3dddf1 (diff)
QmlDesigner: Move labels to left in FontSection
Change-Id: Id8bc92dcb8342c99e5c458cca0fe026b7ae61164 Reviewed-by: Brook Cronin <brook.cronin@qt.io> Reviewed-by: Henning Gründl <henning.gruendl@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'share/qtcreator')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml22
1 files changed, 12 insertions, 10 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml
index 0360012570..6cbc8a77c0 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml
@@ -196,11 +196,7 @@ Section {
}
SecondColumnLayout {
- Label {
- text: qsTr("Word")
- tooltip: qsTr("Sets the word spacing for the font.")
- width: 42
- }
+
SpinBox {
maximumValue: 500
minimumValue: -500
@@ -210,16 +206,17 @@ Section {
Layout.minimumWidth: 60
stepSize: 0.1
}
+ Label {
+ text: qsTr("Word")
+ tooltip: qsTr("Sets the word spacing for the font.")
+ width: 42
+ }
Item {
width: 4
height: 4
}
- Label {
- text: qsTr("Letter")
- tooltip: qsTr("Sets the letter spacing for the font.")
- width: 42
- }
+
SpinBox {
maximumValue: 500
minimumValue: -500
@@ -229,6 +226,11 @@ Section {
Layout.minimumWidth: 60
stepSize: 0.1
}
+ Label {
+ text: qsTr("Letter")
+ tooltip: qsTr("Sets the letter spacing for the font.")
+ width: 42
+ }
}
Label {