From 821ccfb0f496c4ac6eff51a2ec67749a565343bb Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Tue, 22 Nov 2005 12:44:37 +0000 Subject: show infobar on switchchannelup/down --- lib/python/Screens/InfoBarGenerics.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib/python') 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): -- cgit v1.2.3