reenable the blinking dish on positioner movement (can be enabled in the usage setup...
[enigma2.git] / lib / python / Components / ConditionalWidget.py
index 52dcb20c84fc778cd18c1b44a470c26f0379e0df..031a10613447a2868deb3271685b2171c0fb3dbc 100644 (file)
@@ -43,7 +43,7 @@ class ConditionalWidget(Widget):
                if (withTimer):
                        self.conditionCheckTimer = eTimer()
                        self.conditionCheckTimer.timeout.get().append(self.update)
-                       self.conditionCheckTimer.start(500)
+                       self.conditionCheckTimer.start(1000)
                
        def setConnect(self, conditionalFunction):
                self.conditionalFunction = conditionalFunction
@@ -65,10 +65,6 @@ class ConditionalWidget(Widget):
                                self.conditionalFunction = None
                                self.activateCondition(False)
                        
-
-
-                       
-                       
 import time
 
 class BlinkingWidget(Widget):
@@ -93,10 +89,12 @@ class BlinkingWidget(Widget):
                                self.showWidget()
                        
        def startBlinking(self):
+               print "****************************** Start blinking"
                self.blinking = True
                self.timer.start(self.blinktime)
                
        def stopBlinking(self):
+               print "****************************** Stop blinking"
                self.blinking = False
                if (self.state == self.SHOWN):
                        self.hideWidget()