aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-06-19 19:13:02 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-06-19 19:13:02 +0000
commitfc0d94d9a917be5979e4c2fcd910bd441a35843e (patch)
treea81b33739876be7537f907d55ef65be4b1e526e3 /lib/python
parent0524be0c3816d694beafaa15ff48d0f16010dbb9 (diff)
downloadenigma2-fc0d94d9a917be5979e4c2fcd910bd441a35843e.tar.gz
enigma2-fc0d94d9a917be5979e4c2fcd910bd441a35843e.zip
fix seekable status when service is already running, only show infobar if InfoBarShowHide support is available
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 2b5491b9..29d36b0a 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -638,7 +638,8 @@ class InfoBarSeek:
if action[:5] == "seek:":
time = int(action[5:])
self.screen.seekRelative(time * 90000)
- self.screen.doShow()
+ if isinstance(self.screen, InfoBarShowHide):
+ self.screen.doShow()
return 1
else:
return HelpableActionMap.action(self, contexts, action)
@@ -675,6 +676,8 @@ class InfoBarSeek:
self.lockedBecauseOfSkipping = False
+ self.__seekableStatusChanged()
+
def up(self):
pass