diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-10-28 05:27:42 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-10-28 05:27:42 (GMT) |
commit | a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa (patch) | |
tree | cf77131c792a8c56fb135749db5c370495c9e40a /examples/declarative/snow | |
parent | 1e7318348848ff7f51446ae90021051a494e3cb8 (diff) | |
download | Qt-a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa.zip Qt-a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa.tar.gz Qt-a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa.tar.bz2 |
cleanup
Diffstat (limited to 'examples/declarative/snow')
-rw-r--r-- | examples/declarative/snow/ImageBatch.qml | 2 |
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 } |