aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-04-30 20:33:40 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-04-30 20:33:40 +0000
commit46f28210d3fc839f621900e932f650e197688ce5 (patch)
tree7bfdef6134a8faf016b895b92b3b25c1e6dc44ef /lib/python
parentac6ba5aeaad1467541d33a737819803376aacbd0 (diff)
downloadenigma2-46f28210d3fc839f621900e932f650e197688ce5.tar.gz
enigma2-46f28210d3fc839f621900e932f650e197688ce5.zip
show infobar when seeking with numbers in movie player
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index d343f833..2821f2c9 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -652,6 +652,7 @@ class InfoBarSeek:
if action[:5] == "seek:":
time = int(action[5:])
self.screen.seekRelative(time * 90000)
+ self.screen.doShow()
return 1
else:
return HelpableActionMap.action(self, contexts, action)