summaryrefslogtreecommitdiffstats
path: root/examples/declarative/clock
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-08-17 03:44:25 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-08-17 03:44:25 (GMT)
commit467face42d2db216860dade5f5d817a8cddb86f3 (patch)
tree11cd794177501d10b2f6e280848656bf21e7e632 /examples/declarative/clock
parent65d6e2c443ea31886de14736b21953fb8695eaf7 (diff)
downloadQt-467face42d2db216860dade5f5d817a8cddb86f3.zip
Qt-467face42d2db216860dade5f5d817a8cddb86f3.tar.gz
Qt-467face42d2db216860dade5f5d817a8cddb86f3.tar.bz2
Update more often to avoid odd intervals beteeen second movements.
Diffstat (limited to 'examples/declarative/clock')
-rw-r--r--examples/declarative/clock/Clock.qml2
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()
}