summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-10-12 01:23:22 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-10-12 01:23:22 (GMT)
commit68c69f88d4c3a7b9f24162a4c7708ded7caba90e (patch)
tree344e3310706306839ec3eeaf6b6cce4ec1189a70 /examples
parent4d6958dd6d62441d98826ce141b5824d7eb0dfb0 (diff)
downloadQt-68c69f88d4c3a7b9f24162a4c7708ded7caba90e.zip
Qt-68c69f88d4c3a7b9f24162a4c7708ded7caba90e.tar.gz
Qt-68c69f88d4c3a7b9f24162a4c7708ded7caba90e.tar.bz2
Reenable behaviors (now that they work again!)
Diffstat (limited to 'examples')
-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 86e11f7..3945087 100644
--- a/examples/declarative/snow/ImageBatch.qml
+++ b/examples/declarative/snow/ImageBatch.qml
@@ -42,7 +42,7 @@ GridView {
width: grid.imageWidth; height: grid.imageHeight;
Image { id: flickrImage; source: url; fillMode: "PreserveAspectFit"; smooth: true; anchors.fill: parent;
- opacity: (status == Image.Ready)?1:0; /*opacity: Behavior { NumberAnimation { properties: "opacity" } }*/ }
+ opacity: (status == Image.Ready)?1:0; opacity: Behavior { NumberAnimation { properties: "opacity" } } }
Loading { anchors.centerIn: parent; visible: flickrImage.status!=1 }
states: State {