aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/views/listview/content/PressAndHoldButton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/views/listview/content/PressAndHoldButton.qml')
-rw-r--r--examples/quick/views/listview/content/PressAndHoldButton.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/views/listview/content/PressAndHoldButton.qml b/examples/quick/views/listview/content/PressAndHoldButton.qml
index 527394eb4d..6d633c0264 100644
--- a/examples/quick/views/listview/content/PressAndHoldButton.qml
+++ b/examples/quick/views/listview/content/PressAndHoldButton.qml
@@ -72,12 +72,12 @@ Image {
PropertyAction { target: container; property: "pressed"; value: true }
ScriptAction { script: container.clicked() }
- PauseAnimation { duration: repeatDelay }
+ PauseAnimation { duration: container.repeatDelay }
SequentialAnimation {
loops: Animation.Infinite
ScriptAction { script: container.clicked() }
- PauseAnimation { duration: repeatDuration }
+ PauseAnimation { duration: container.repeatDuration }
}
}