diff options
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): |
