diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-06 18:35:55 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-06 18:35:55 +0000 |
| commit | 64e44eef78c26d1d6d5a1662ad1d105fb96e9061 (patch) | |
| tree | 43ba547520b2345b3ecbed2317948858dd832351 /lib/python/Components/BlinkingPixmap.py | |
| parent | 86e9af6a8a52226e0dc08430fb4b03291f9de0c7 (diff) | |
| download | enigma2-64e44eef78c26d1d6d5a1662ad1d105fb96e9061.tar.gz enigma2-64e44eef78c26d1d6d5a1662ad1d105fb96e9061.zip | |
factorize the conditionalPixmap
Diffstat (limited to 'lib/python/Components/BlinkingPixmap.py')
| -rw-r--r-- | lib/python/Components/BlinkingPixmap.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/BlinkingPixmap.py b/lib/python/Components/BlinkingPixmap.py index b19bdc5d..c1b4262f 100644 --- a/lib/python/Components/BlinkingPixmap.py +++ b/lib/python/Components/BlinkingPixmap.py @@ -21,9 +21,9 @@ class BlinkingPixmap(Pixmap): def blink(self): if self.blinking == True: if (self.state == self.SHOWN): - self.hidePixmap() + self.hideWidget() elif (self.state == self.HIDDEN): - self.showPixmap() + self.showWidget() def startBlinking(self): self.blinking = True @@ -32,7 +32,7 @@ class BlinkingPixmap(Pixmap): def stopBlinking(self): self.blinking = False if (self.state == self.SHOWN): - self.hidePixmap() + self.hideWidget() self.timer.stop() class BlinkingPixmapConditional(BlinkingPixmap, PixmapConditional): |
