aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 12:44:37 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 12:44:37 +0000
commit821ccfb0f496c4ac6eff51a2ec67749a565343bb (patch)
treee48406fb4ad66a5e8aeeefec8fb15492503c103d /lib/python
parent0ba15307e275a40042a9aa7ac0f33aac7c14e63f (diff)
downloadenigma2-821ccfb0f496c4ac6eff51a2ec67749a565343bb.tar.gz
enigma2-821ccfb0f496c4ac6eff51a2ec67749a565343bb.zip
show infobar on switchchannelup/down
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py7
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):