summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-10-05 05:13:01 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-10-05 05:13:01 (GMT)
commit5cfc52167e1fbfaabe1f060308241d2100505bad (patch)
treefa724d87a63fbff140077832774bea47830d8254 /demos
parentd480c23bf54a4dce59b4d29c6276b875307b11ce (diff)
downloadQt-5cfc52167e1fbfaabe1f060308241d2100505bad.zip
Qt-5cfc52167e1fbfaabe1f060308241d2100505bad.tar.gz
Qt-5cfc52167e1fbfaabe1f060308241d2100505bad.tar.bz2
Minor fixes to flickr example.
Diffstat (limited to 'demos')
-rw-r--r--demos/declarative/flickr/flickr-desktop.qml10
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: "*"