aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/animation/states/states.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2012-04-20 21:01:04 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-26 03:33:13 +0200
commit1d0368335d25b70d3cecbbcea224feb9ac0d6e59 (patch)
tree02940762dd4079bdd0a7d857443cef1527330118 /examples/quick/animation/states/states.qml
parent669ba098e44080991e0d17827622ecb8928650df (diff)
Flesh out examples documentation
Change-Id: I4f7a1ce6b9957f43e442947dc6b319e919ec9cf7 Reviewed-by: Yann Bodson <yann.bodson@nokia.com>
Diffstat (limited to 'examples/quick/animation/states/states.qml')
-rw-r--r--examples/quick/animation/states/states.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/quick/animation/states/states.qml b/examples/quick/animation/states/states.qml
index 7ca56a9295..b92ba1b313 100644
--- a/examples/quick/animation/states/states.qml
+++ b/examples/quick/animation/states/states.qml
@@ -86,6 +86,7 @@ Rectangle {
}
states: [
+ // ![0]
// In state 'middleRight', move the image to middleRightRect
State {
name: "middleRight"
@@ -97,5 +98,6 @@ Rectangle {
name: "bottomLeft"
PropertyChanges { target: userIcon; x: bottomLeftRect.x; y: bottomLeftRect.y }
}
+ // ![0]
]
}