aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-11-05 11:43:01 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-11-05 11:43:01 +0100
commit1c954ba161bc3cd4b838b3c5a423d41847f0382a (patch)
treedfcbee01828a03636542ef6ecb4d7ab2660b1261 /lib
parentb643641e2c6288eff61d0346a3dda82bd820b3b7 (diff)
downloadenigma2-1c954ba161bc3cd4b838b3c5a423d41847f0382a.tar.gz
enigma2-1c954ba161bc3cd4b838b3c5a423d41847f0382a.zip
small fix
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 96fcf802..67bd2631 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -916,8 +916,8 @@ class InfoBarSeek:
def seekFwd(self):
seek = self.getSeek()
- if seek and (seek.isCurrentlySeekable() & 1) and not (seek.isCurrentlySeekable() & 2):
- if not self.fast_winding_hint_message_showed:
+ if seek and not (seek.isCurrentlySeekable() & 2):
+ 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
@@ -951,8 +951,8 @@ class InfoBarSeek:
def seekBack(self):
seek = self.getSeek()
- if seek and (seek.isCurrentlySeekable() & 1) and not (seek.isCurrentlySeekable() & 2):
- if not self.fast_winding_hint_message_showed:
+ if seek and not (seek.isCurrentlySeekable() & 2):
+ 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