aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/propertyaction.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/doc/snippets/qml/propertyaction.qml')
-rw-r--r--src/quick/doc/snippets/qml/propertyaction.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/doc/snippets/qml/propertyaction.qml b/src/quick/doc/snippets/qml/propertyaction.qml
index 5ddef30177..20208d95ce 100644
--- a/src/quick/doc/snippets/qml/propertyaction.qml
+++ b/src/quick/doc/snippets/qml/propertyaction.qml
@@ -74,9 +74,9 @@ Row {
//![standalone]
SequentialAnimation {
- PropertyAction { target: img; property: "smooth"; value: "true" }
+ PropertyAction { target: img; property: "opacity"; value: .5 }
NumberAnimation { target: img; property: "width"; to: 300; duration: 1000 }
- PropertyAction { target: img; property: "smooth"; value: "false" }
+ PropertyAction { target: img; property: "opacity"; value: 1 }
}
//![standalone]
}