diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-05-05 06:22:51 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-05-05 06:23:55 (GMT) |
commit | f5e3e21e95275a8cf31cddf2063dfa497e92872e (patch) | |
tree | a7a2c41b884f6faeef6678c410006623eb714e23 /demos/declarative/flickr/mobile/ImageDetails.qml | |
parent | d6597781a658ba9546bc56f4f3079234c0790e1d (diff) | |
download | Qt-f5e3e21e95275a8cf31cddf2063dfa497e92872e.zip Qt-f5e3e21e95275a8cf31cddf2063dfa497e92872e.tar.gz Qt-f5e3e21e95275a8cf31cddf2063dfa497e92872e.tar.bz2 |
Use enum rather than string for easing type.
Diffstat (limited to 'demos/declarative/flickr/mobile/ImageDetails.qml')
-rw-r--r-- | demos/declarative/flickr/mobile/ImageDetails.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/declarative/flickr/mobile/ImageDetails.qml b/demos/declarative/flickr/mobile/ImageDetails.qml index 58b0b83..310c9df 100644 --- a/demos/declarative/flickr/mobile/ImageDetails.qml +++ b/demos/declarative/flickr/mobile/ImageDetails.qml @@ -114,7 +114,7 @@ Flipable { transitions: Transition { SequentialAnimation { PropertyAction { target: bigImage; property: "smooth"; value: false } - NumberAnimation { easing.type: "InOutQuad"; properties: "angle"; duration: 500 } + NumberAnimation { easing.type: Easing.InOutQuad; properties: "angle"; duration: 500 } PropertyAction { target: bigImage; property: "smooth"; value: !flickable.moving } } } |