some logic to detect useable nims for rotor plugin
[enigma2.git] / lib / python / Components / Clock.py
index 982d1c4a6f11fb951784213b2659d9248a888be3..9129acafc5b8d6aa69978d7d64b4c953aba05901 100644 (file)
@@ -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):
@@ -32,7 +33,6 @@ class Clock(HTMLComponent, GUIComponent, VariableText):
                t = time.localtime()
                timestr = "%2d:%02d:%02d" % (t.tm_hour, t.tm_min, t.tm_sec)
                self.setText(timestr)
-               setLCDClock(timestr)
 
 # realisierung als GUI
        def createWidget(self, parent):