aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickgridview/data
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@live.com>2015-07-07 16:51:55 -0500
committerFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2015-07-12 10:53:50 +0000
commite44843bfc8fc8bfd5c987fde08816ec3d81f0cae (patch)
tree26f24aa1f0f76a168338b0936c031980f462b168 /tests/auto/quick/qquickgridview/data
parent656ebe4316b42f79a464a3ea9b5801538a9609c4 (diff)
Fix potential use of incorrect bounds in delegate tracking.
Using GridView.SnapToRow and GridView.ApplyRange with a top margin could lead to the view jumping (rather than smoothly transitioning) when changing the currentIndex. Change-Id: I6936b378220f59e8d416f7531cf8b6906c723cb2 Task-number: QTBUG-45640 Reviewed-by: Martin Jones <martin.jones@qinetic.com.au>
Diffstat (limited to 'tests/auto/quick/qquickgridview/data')
-rw-r--r--tests/auto/quick/qquickgridview/data/qtbug45640.qml24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickgridview/data/qtbug45640.qml b/tests/auto/quick/qquickgridview/data/qtbug45640.qml
new file mode 100644
index 0000000000..6973773432
--- /dev/null
+++ b/tests/auto/quick/qquickgridview/data/qtbug45640.qml
@@ -0,0 +1,24 @@
+import QtQuick 2.0
+
+GridView {
+ id: gridView
+ width: 400; height: 400
+ cellHeight: 100
+ cellWidth: 100
+ model: 32
+
+ topMargin: 50
+ snapMode: GridView.SnapToRow
+ preferredHighlightBegin: 50
+ preferredHighlightEnd: 50
+ highlightRangeMode: GridView.ApplyRange
+
+ delegate: Rectangle {
+ width: 100
+ height: 100
+ color: index % 2 == 0 ? "#FFFF00" : "#0000FF"
+ }
+
+ highlight: Rectangle { color: "red"; z: 2 }
+ highlightMoveDuration: 1000
+}