aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickgridview/data
diff options
context:
space:
mode:
authorAndrew den Exter <andrew.den-exter@nokia.com>2012-05-29 09:50:13 +1000
committerQt by Nokia <qt-info@nokia.com>2012-05-29 08:55:09 +0200
commit18eba786347c42e0c1c9a2a5f8331624f1779920 (patch)
tree5d6593274f7d43d203b572ec77a4cd4ac2900842 /tests/auto/quick/qquickgridview/data
parent9064de5692c83139aa3730ac6f8684c9402ae5db (diff)
Fix nested GridView key navigation with a single row or column.
Don't ignore key events when the currentIndex is unchanged due to wrapping. . Task-number: QTBUG-21999 Change-Id: Idc82d472ca7ec495669207761bfe7de58b8781f9 Reviewed-by: Bea Lam <bea.lam@nokia.com>
Diffstat (limited to 'tests/auto/quick/qquickgridview/data')
-rw-r--r--tests/auto/quick/qquickgridview/data/gridview1.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickgridview/data/gridview1.qml b/tests/auto/quick/qquickgridview/data/gridview1.qml
index 1424955689..c381101925 100644
--- a/tests/auto/quick/qquickgridview/data/gridview1.qml
+++ b/tests/auto/quick/qquickgridview/data/gridview1.qml
@@ -8,6 +8,7 @@ Rectangle {
property real cacheBuffer: 0
property int added: -1
property variant removed
+ property int lastKey: 0
width: 240
height: 320
@@ -66,4 +67,6 @@ Rectangle {
cacheBuffer: root.cacheBuffer
focus: true
}
+
+ Keys.onPressed: lastKey = event.key
}