summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorJoona Petrell <joona.t.petrell@nokia.com>2010-11-01 08:00:40 (GMT)
committerJoona Petrell <joona.t.petrell@nokia.com>2010-11-01 08:00:43 (GMT)
commit56ae8da559b3d225698eb79b78eec44a8b62239d (patch)
tree5ee8edfc45f587c3ab6baab1e02e642b5b512ae1 /demos
parentdeea8d2b324ca98d48c931c6d3a14ec197388f50 (diff)
downloadQt-56ae8da559b3d225698eb79b78eec44a8b62239d.zip
Qt-56ae8da559b3d225698eb79b78eec44a8b62239d.tar.gz
Qt-56ae8da559b3d225698eb79b78eec44a8b62239d.tar.bz2
Increase cachebuffer in Flickr demo to quarantee expanded delegate is not deleted the during device orientation change
Task-number: QT-3824 Reviewed-by: Martin Jones
Diffstat (limited to 'demos')
-rw-r--r--demos/declarative/flickr/flickr.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/declarative/flickr/flickr.qml b/demos/declarative/flickr/flickr.qml
index 740ee35..9387948 100644
--- a/demos/declarative/flickr/flickr.qml
+++ b/demos/declarative/flickr/flickr.qml
@@ -62,7 +62,7 @@ Item {
GridView {
id: photoGridView; model: rssModel; delegate: Mobile.GridDelegate {}
- cacheBuffer: 100
+ cacheBuffer: 1000
cellWidth: (parent.width-2)/4; cellHeight: cellWidth; width: parent.width; height: parent.height
}