aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/animation/basics/property-animation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/animation/basics/property-animation.qml')
-rw-r--r--examples/quick/animation/basics/property-animation.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/quick/animation/basics/property-animation.qml b/examples/quick/animation/basics/property-animation.qml
index 4a4d3e3b2a..2752b32816 100644
--- a/examples/quick/animation/basics/property-animation.qml
+++ b/examples/quick/animation/basics/property-animation.qml
@@ -81,6 +81,7 @@ Item {
y: minHeight
source: "images/face-smile.png"
+ //! [0]
// Animate the y property. Setting loops to Animation.Infinite makes the
// animation repeat indefinitely, otherwise it would only run once.
SequentialAnimation on y {
@@ -101,5 +102,6 @@ Item {
// Then pause for 500ms
PauseAnimation { duration: 500 }
}
+ //! [0]
}
}