QmlDesigner: Fix mobile scroll wizard template

Change-Id: I00d0467ce4ed28d0135e16c6ae9802ed66a1ff7d
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Henning Gruendl
2020-09-02 13:53:10 +02:00
committed by Thomas Hartmann
parent 32dfddbf78
commit 6d51955451

View File

@@ -17,11 +17,12 @@ ApplicationWindow {
anchors.fill: parent
ListView {
id: listView
width: parent.width
model: 20
delegate: ItemDelegate {
text: "Item " + (index + 1)
width: parent.width
width: listView.width
}
}
}