diff options
Diffstat (limited to 'examples/declarative')
-rw-r--r-- | examples/declarative/clock/Clock.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/clock/Clock.qml b/examples/declarative/clock/Clock.qml index d73f7ca..30f0940 100644 --- a/examples/declarative/clock/Clock.qml +++ b/examples/declarative/clock/Clock.qml @@ -14,7 +14,7 @@ Item { seconds = date.getSeconds(); } Timer { - interval: 500; running: true; repeat: true; triggeredOnStart: true + interval: 100; running: true; repeat: true; triggeredOnStart: true onTriggered: Clock.time = new Date() } |