aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-30 17:15:52 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-30 17:15:52 +0100
commitd8480166af2ce1378b7272d3342ce47227ccceff (patch)
tree3c25e4779d6f03d7854aeebcfaa79f70fe7d809c /lib
parent3769dd67c3385fada6ab53b21ded2b9b5f79426a (diff)
downloadenigma2-d8480166af2ce1378b7272d3342ce47227ccceff.tar.gz
enigma2-d8480166af2ce1378b7272d3342ce47227ccceff.zip
InfoBarGenerics.py: small fix
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 67bd2631..2d98c30c 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -920,7 +920,8 @@ class InfoBarSeek:
if not self.fast_winding_hint_message_showed and (seek.isCurrentlySeekable() & 1):
self.session.open(MessageBox, _("No fast winding possible yet.. but you can use the number buttons to skip forward/backward!"), MessageBox.TYPE_INFO, timeout=10)
self.fast_winding_hint_message_showed = True
- return
+ return
+ return 0 # trade as unhandled action
if self.seekstate == self.SEEK_STATE_PLAY:
self.setSeekState(self.makeStateForward(int(config.seek.enter_forward.value)))
elif self.seekstate == self.SEEK_STATE_PAUSE:
@@ -955,7 +956,8 @@ class InfoBarSeek:
if not self.fast_winding_hint_message_showed and (seek.isCurrentlySeekable() & 1):
self.session.open(MessageBox, _("No fast winding possible yet.. but you can use the number buttons to skip forward/backward!"), MessageBox.TYPE_INFO, timeout=10)
self.fast_winding_hint_message_showed = True
- return
+ return
+ return 0 # trade as unhandled action
seekstate = self.seekstate
if seekstate == self.SEEK_STATE_PLAY:
self.setSeekState(self.makeStateBackward(int(config.seek.enter_backward.value)))