diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-10-05 05:13:01 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-10-05 05:13:01 (GMT) |
commit | 5cfc52167e1fbfaabe1f060308241d2100505bad (patch) | |
tree | fa724d87a63fbff140077832774bea47830d8254 | |
parent | d480c23bf54a4dce59b4d29c6276b875307b11ce (diff) | |
download | Qt-5cfc52167e1fbfaabe1f060308241d2100505bad.zip Qt-5cfc52167e1fbfaabe1f060308241d2100505bad.tar.gz Qt-5cfc52167e1fbfaabe1f060308241d2100505bad.tar.bz2 |
Minor fixes to flickr example.
-rw-r--r-- | demos/declarative/flickr/flickr-desktop.qml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/demos/declarative/flickr/flickr-desktop.qml b/demos/declarative/flickr/flickr-desktop.qml index 6a4efd9..f8cf048 100644 --- a/demos/declarative/flickr/flickr-desktop.qml +++ b/demos/declarative/flickr/flickr-desktop.qml @@ -70,8 +70,8 @@ Item { PropertyChanges { target: ItemRotation; angle: 0 } PropertyChanges { target: Shadows; opacity: 0 } PropertyChanges { target: ImageDetails; y: 20 } - PropertyChanges { target: PhotoGridView; y: "-480" } - PropertyChanges { target: PhotoPathView; y: "-480" } + PropertyChanges { target: PhotoGridView; y: -480 } + PropertyChanges { target: PhotoPathView; y: -480 } PropertyChanges { target: ViewModeButton; opacity: 0 } PropertyChanges { target: TagsEdit; opacity: 0 } PropertyChanges { target: FetchButton; opacity: 0 } @@ -82,8 +82,10 @@ Item { transitions: [ Transition { from: "*"; to: "Details" - ParentAction { } - NumberAnimation { properties: "x,y,scale,opacity,angle"; duration: 500; easing: "easeInOutQuad" } + SequentialAnimation { + ParentAction { } + NumberAnimation { properties: "x,y,scale,opacity,angle"; duration: 500; easing: "easeInOutQuad" } + } }, Transition { from: "Details"; to: "*" |