aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Pixmap.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-26 03:28:02 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-26 03:28:02 +0000
commite33169b42fa0e0aafa995ca2ec0abd605f9768f2 (patch)
tree53fb3a35d59b2786bb1546a01f57c63bc1a88284 /lib/python/Components/Pixmap.py
parent85b4fbf32765dd03809defca101cb359ea35cc5c (diff)
downloadenigma2-e33169b42fa0e0aafa995ca2ec0abd605f9768f2.tar.gz
enigma2-e33169b42fa0e0aafa995ca2ec0abd605f9768f2.zip
use PixmapConditional for BlinkingPixmap
Diffstat (limited to 'lib/python/Components/Pixmap.py')
-rw-r--r--lib/python/Components/Pixmap.py19
1 files changed, 11 insertions, 8 deletions
diff --git a/lib/python/Components/Pixmap.py b/lib/python/Components/Pixmap.py
index a98fef14..264ffe29 100644
--- a/lib/python/Components/Pixmap.py
+++ b/lib/python/Components/Pixmap.py
@@ -27,6 +27,8 @@ class PixmapConditional(Pixmap):
def __init__(self, withTimer = True):
Pixmap.__init__(self)
+ self.setConnect(None)
+
if (withTimer):
self.conditionCheckTimer = eTimer()
self.conditionCheckTimer.timeout.get().append(self.update)
@@ -37,15 +39,16 @@ class PixmapConditional(Pixmap):
def activateCondition(self, condition):
if (condition):
- self.instance.hide()
- else:
self.instance.show()
+ else:
+ self.instance.hide()
def update(self):
- try:
- self.conditionalFunction() # check, if the conditionalfunction is still valid
- except:
- self.conditionalFunction = None
- self.activateCondition(False)
+ if (self.setConnect != None):
+ try:
+ self.conditionalFunction() # check, if the conditionalfunction is still valid
+ except:
+ self.conditionalFunction = None
+ self.activateCondition(False)
- self.activateCondition(self.conditionalFunction())
+ self.activateCondition(self.conditionalFunction())