aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-06 17:43:49 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-06 17:43:49 +0000
commit6c90aaaf2c10115bcb80f130f60a99529c0272b2 (patch)
tree5098c83d4a69b9354092ae20e423d21c81239a88 /lib
parentdbe120313d2b4589e3c7ebe49ee98586a2b04e16 (diff)
downloadenigma2-6c90aaaf2c10115bcb80f130f60a99529c0272b2.tar.gz
enigma2-6c90aaaf2c10115bcb80f130f60a99529c0272b2.zip
update clock directly onShow
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Components/Clock.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/Clock.py b/lib/python/Components/Clock.py
index 5d7ec8dc..9129acaf 100644
--- a/lib/python/Components/Clock.py
+++ b/lib/python/Components/Clock.py
@@ -21,7 +21,8 @@ class Clock(HTMLComponent, GUIComponent, VariableText):
self.clockTimer = eTimer()
self.clockTimer.timeout.get().append(self.doClock)
- def onShow(self):
+ def onShow(self):
+ self.doClock()
self.clockTimer.start(1000)
def onHide(self):