aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2019-07-02 11:33:28 +0200
committerTim Jenssen <tim.jenssen@qt.io>2019-07-02 16:22:56 +0000
commit370b43665042b92e6304d13c7f91f01f3424f297 (patch)
treee857ab399cf080b1811cd90a21aba3bf77908df9 /share
parent76d0a16a8157b3c82afbeb5456cb2e589ad1111b (diff)
QmlDesigner: Fix ListView property editor layout
We have to use Layout.fillWidth consistently. Change-Id: I6052fb8c1a2b2cdc704bba70db1f2bf26730232f Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
index a4314dc2671..9baa1d4ba1d 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
@@ -100,6 +100,7 @@ Column {
model: ["LeftToRight", "RightToLeft"]
backendValue: backendValues.layoutDirection
scope: "Qt"
+ Layout.fillWidth: true
}
ExpandingSpacer {
@@ -117,6 +118,7 @@ Column {
model: ["NoSnap", "SnapToItem", "SnapOneItem"]
backendValue: backendValues.snapMode
scope: "ListView"
+ Layout.fillWidth: true
}
ExpandingSpacer {