From fceb229652ccde5f22e1875025327d6c7f412f36 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Tue, 6 Aug 2019 14:34:33 +0200 Subject: QmlDesigner: Move labels to left in FontSection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Id8bc92dcb8342c99e5c458cca0fe026b7ae61164 Reviewed-by: Brook Cronin Reviewed-by: Henning Gründl Reviewed-by: Thomas Hartmann --- .../imports/HelperWidgets/FontSection.qml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'share') 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 { -- cgit v1.2.3