diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-08-17 03:44:25 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-08-17 03:44:25 (GMT) |
commit | 467face42d2db216860dade5f5d817a8cddb86f3 (patch) | |
tree | 11cd794177501d10b2f6e280848656bf21e7e632 /examples | |
parent | 65d6e2c443ea31886de14736b21953fb8695eaf7 (diff) | |
download | Qt-467face42d2db216860dade5f5d817a8cddb86f3.zip Qt-467face42d2db216860dade5f5d817a8cddb86f3.tar.gz Qt-467face42d2db216860dade5f5d817a8cddb86f3.tar.bz2 |
Update more often to avoid odd intervals beteeen second movements.
Diffstat (limited to 'examples')
-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() } |