aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/pointerhandlers/components/FlashAnimation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/pointerhandlers/components/FlashAnimation.qml')
-rw-r--r--examples/quick/pointerhandlers/components/FlashAnimation.qml8
1 files changed, 1 insertions, 7 deletions
diff --git a/examples/quick/pointerhandlers/components/FlashAnimation.qml b/examples/quick/pointerhandlers/components/FlashAnimation.qml
index e369282470..bdbcaecdfa 100644
--- a/examples/quick/pointerhandlers/components/FlashAnimation.qml
+++ b/examples/quick/pointerhandlers/components/FlashAnimation.qml
@@ -6,15 +6,9 @@ import QtQuick
SequentialAnimation {
id: tapFlash
running: false
+ loops: 3
PropertyAction { value: false }
PauseAnimation { duration: 100 }
PropertyAction { value: true }
PauseAnimation { duration: 100 }
- PropertyAction { value: false }
- PauseAnimation { duration: 100 }
- PropertyAction { value: true }
- PauseAnimation { duration: 100 }
- PropertyAction { value: false }
- PauseAnimation { duration: 100 }
- PropertyAction { value: true }
}