diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-22 12:44:37 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-22 12:44:37 +0000 |
| commit | 821ccfb0f496c4ac6eff51a2ec67749a565343bb (patch) | |
| tree | e48406fb4ad66a5e8aeeefec8fb15492503c103d /lib/python | |
| parent | 0ba15307e275a40042a9aa7ac0f33aac7c14e63f (diff) | |
| download | enigma2-821ccfb0f496c4ac6eff51a2ec67749a565343bb.tar.gz enigma2-821ccfb0f496c4ac6eff51a2ec67749a565343bb.zip | |
show infobar on switchchannelup/down
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 6b5acc64..f63e9b15 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -114,6 +114,7 @@ class InfoBarShowHide: def show(self): self.state = self.STATE_SHOWN + self.hideTimer.stop() self.hideTimer.start(5000) def doTimerHide(self): @@ -272,11 +273,15 @@ class InfoBarChannelSelection: def zapUp(self): self.servicelist.moveUp() self.servicelist.zap() + self.instance.show() + self.show() def zapDown(self): self.servicelist.moveDown() self.servicelist.zap() - + self.instance.show() + self.show() + class InfoBarMenu: """ Handles a menu action, to open the (main) menu """ def __init__(self): |
