diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-04-14 06:25:19 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-04-14 06:25:19 (GMT) |
commit | 4492df7ff293a5d76b5021bc60e3ba7d5041c303 (patch) | |
tree | d2c339663940191e1d54128a7bd3e4f6fa48660f /demos | |
parent | e52a73d8c74576e267dcc59d42247bd14131daaf (diff) | |
download | Qt-4492df7ff293a5d76b5021bc60e3ba7d5041c303.zip Qt-4492df7ff293a5d76b5021bc60e3ba7d5041c303.tar.gz Qt-4492df7ff293a5d76b5021bc60e3ba7d5041c303.tar.bz2 |
Fix GridView.onRemove animation in photoviewer.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml b/demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml index b494651..cd9ecbc 100644 --- a/demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml +++ b/demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml @@ -79,9 +79,9 @@ Component { GridView.onAdd: NumberAnimation { target: albumWrapper; properties: "scale"; from: 0.0; to: 1.0 } GridView.onRemove: SequentialAnimation { - PropertyAction { target: albumWrapper.GridView; property: "delayRemove"; value: true } + PropertyAction { target: albumWrapper; property: "GridView.delayRemove"; value: true } NumberAnimation { target: albumWrapper; property: "scale"; from: 1.0; to: 0.0 } - PropertyAction { target: albumWrapper.GridView; property: "delayRemove"; value: false } + PropertyAction { target: albumWrapper; property: "GridView.delayRemove"; value: false } } transitions: [ |