diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-04-30 20:33:40 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-04-30 20:33:40 +0000 |
| commit | 46f28210d3fc839f621900e932f650e197688ce5 (patch) | |
| tree | 7bfdef6134a8faf016b895b92b3b25c1e6dc44ef /lib/python | |
| parent | ac6ba5aeaad1467541d33a737819803376aacbd0 (diff) | |
| download | enigma2-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.py | 1 |
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) |
