aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/data/snapOneItemWrongDirection.qml
blob: f5b7b35d0cc61d9260d42a344332ae393cb2814d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.0

ListView {
    width: 400
    height: 400
    focus: true

    model: 10
    delegate: Rectangle {
        width: parent.width
        height: 50
        color: index % 2 ? "blue" : "green"
    }

    snapMode: ListView.SnapOneItem
    Keys.onUpPressed: flick(0,500)
    Keys.onDownPressed: flick(0,-500)
}