From: Felix Domke Date: Mon, 30 Apr 2007 20:33:40 +0000 (+0000) Subject: show infobar when seeking with numbers in movie player X-Git-Tag: 2.6.0~2264 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/46f28210d3fc839f621900e932f650e197688ce5?hp=ac6ba5aeaad1467541d33a737819803376aacbd0 show infobar when seeking with numbers in movie player --- 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)