summaryrefslogtreecommitdiffstats
path: root/examples/declarative/listview/recipes.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-06-26 02:53:17 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-06-26 02:53:17 (GMT)
commit98286fd1ac3bb7940618d5a170c7b98b0e2a4dae (patch)
treea1e0c98f28f7b0b6fd55a56a28619be09e901e1c /examples/declarative/listview/recipes.qml
parentafa4e61b10187102d3ea49d1c11bae1ef919d94d (diff)
downloadQt-98286fd1ac3bb7940618d5a170c7b98b0e2a4dae.zip
Qt-98286fd1ac3bb7940618d5a170c7b98b0e2a4dae.tar.gz
Qt-98286fd1ac3bb7940618d5a170c7b98b0e2a4dae.tar.bz2
Color property is required to be explicity set (at least for now).
Diffstat (limited to 'examples/declarative/listview/recipes.qml')
-rw-r--r--examples/declarative/listview/recipes.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/listview/recipes.qml b/examples/declarative/listview/recipes.qml
index b012c5a..e5cb8ff 100644
--- a/examples/declarative/listview/recipes.qml
+++ b/examples/declarative/listview/recipes.qml
@@ -114,7 +114,7 @@ Rect {
Transition {
// Make the state changes smooth
ParallelAnimation {
- ColorAnimation { duration: 500 }
+ ColorAnimation { property: "color"; duration: 500 }
NumberAnimation {
duration: 300; properties: "detailsOpacity,x,yPosition,height,width"
}