Try again to fix currentIndex() test
authorBea Lam <bea.lam@nokia.com>
Tue, 22 Nov 2011 05:13:28 +0000 (15:13 +1000)
committerQt by Nokia <qt-info@nokia.com>
Tue, 22 Nov 2011 05:14:52 +0000 (06:14 +0100)
Seems that if the threaded renderer is disabled, updatePolish() isn't
called on the view until after setCurrentIndex(), so then the view
starts at the wrong position and never moves upwards when
setCurrentIndex(0) is executed.

Change-Id: I74da9de8ac432d27189416287e7ea5937c1d6299
Reviewed-by: Andrew den Exter <andrew.den-exter@nokia.com>

tests/auto/declarative/qquickgridview/tst_qquickgridview.cpp

index 3225878..bdcb27f 100644 (file)
@@ -1346,6 +1346,7 @@ void tst_QQuickGridView::currentIndex()
 
     QQuickGridView *gridview = findItem<QQuickGridView>(canvas->rootObject(), "grid");
     QVERIFY(gridview != 0);
+    QTRY_VERIFY(!QQuickItemPrivate::get(gridview)->polishScheduled);
 
     QQuickItem *contentItem = gridview->contentItem();
     QVERIFY(contentItem != 0);