summaryrefslogtreecommitdiffstats
path: root/examples/declarative/snow
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-10-28 05:27:42 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-10-28 05:27:42 (GMT)
commita8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa (patch)
treecf77131c792a8c56fb135749db5c370495c9e40a /examples/declarative/snow
parent1e7318348848ff7f51446ae90021051a494e3cb8 (diff)
downloadQt-a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa.zip
Qt-a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa.tar.gz
Qt-a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa.tar.bz2
cleanup
Diffstat (limited to 'examples/declarative/snow')
-rw-r--r--examples/declarative/snow/ImageBatch.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/snow/ImageBatch.qml b/examples/declarative/snow/ImageBatch.qml
index dfe2a46..95b9b97 100644
--- a/examples/declarative/snow/ImageBatch.qml
+++ b/examples/declarative/snow/ImageBatch.qml
@@ -41,7 +41,7 @@ GridView {
transformOrigin: Item.Center
width: grid.imageWidth; height: grid.imageHeight;
- Image { id: flickrImage; source: url; fillMode: "PreserveAspectFit"; smooth: true; anchors.fill: parent;
+ Image { id: flickrImage; source: url; fillMode: Image.PreserveAspectFit; smooth: true; anchors.fill: parent;
opacity: (status == Image.Ready)?1:0; opacity: Behavior { NumberAnimation { properties: "opacity" } } }
Loading { anchors.centerIn: parent; visible: flickrImage.status!=1 }