diff options
| author | Thomas Hartmann <Thomas.Hartmann@digia.com> | 2013-10-23 11:18:08 +0200 |
|---|---|---|
| committer | Thomas Hartmann <Thomas.Hartmann@digia.com> | 2013-10-23 11:25:40 +0200 |
| commit | be8cee36bb366256de8111317b3009f1565c7f20 (patch) | |
| tree | f19e479b6a719cf7ea812c3229aecb34d21bb6e1 | |
| parent | bfb1f31c4773b856ee951897001b674ff08c623b (diff) | |
| download | qt-creator-be8cee36bb366256de8111317b3009f1565c7f20.tar.gz | |
QmlDesigner.PropertyEditor: fixing the layout for StandardTextSection
Change-Id: Iea1a30b8718ccaafec3388aa793119443b1fe38c
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
| -rw-r--r-- | share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml index 5ef3f0a8ef..ac14ca8ef7 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml @@ -51,7 +51,7 @@ Section { property bool showVerticalAlignment: false property bool useLineEdit: true - GridLayout { + SectionLayout { columns: 2 rows: 3 Label { @@ -60,6 +60,7 @@ Section { LineEdit { //visible: useLineEdit backendValue: backendValues.text + Layout.fillWidth: true } Label { |
