aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/data/qtbug35920.qml
blob: 14853e3b372d6c1c499ca2ea6b6556c26c406a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.1

ListView {
    width: 200
    height: 200

    snapMode: ListView.SnapOneItem
    highlightRangeMode: ListView.StrictlyEnforceRange

    model: 100
    delegate: Text { text: modelData }
}