X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fpython%2FComponents%2FPixmap.py;fp=lib%2Fpython%2FComponents%2FPixmap.py;h=264ffe29df6942a3ce2e5a924c19b29f0ce91277;hb=e33169b42fa0e0aafa995ca2ec0abd605f9768f2;hp=a98fef14f0163a0b98a9275c9b2a4c9b8b12634a;hpb=85b4fbf32765dd03809defca101cb359ea35cc5c;p=vuplus_dvbapp diff --git a/lib/python/Components/Pixmap.py b/lib/python/Components/Pixmap.py index a98fef1..264ffe2 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())