aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-11-06 11:43:37 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-11-06 11:43:37 +0100
commite66d0ee5f86946cf2d0c3dc5a0ea369917e0cfd3 (patch)
tree2bf1b2afafd6969b5d896c89424f188360f0b50e /lib/python
parentd47380fd0384562880b5f259863f749c7e17b4cf (diff)
downloadenigma2-e66d0ee5f86946cf2d0c3dc5a0ea369917e0cfd3.tar.gz
enigma2-e66d0ee5f86946cf2d0c3dc5a0ea369917e0cfd3.zip
Revert "small fix"
This reverts commit 1c954ba161bc3cd4b838b3c5a423d41847f0382a.
Diffstat (limited to 'lib/python')
-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 df853218..9a6a099c 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -910,8 +910,8 @@ class InfoBarSeek:
def seekFwd(self):
seek = self.getSeek()
- if seek and not (seek.isCurrentlySeekable() & 2):
- if not self.fast_winding_hint_message_showed and (seek.isCurrentlySeekable() & 1):
+ if seek and (seek.isCurrentlySeekable() & 1) and not (seek.isCurrentlySeekable() & 2):
+ if not self.fast_winding_hint_message_showed:
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
@@ -945,8 +945,8 @@ class InfoBarSeek:
def seekBack(self):
seek = self.getSeek()
- if seek and not (seek.isCurrentlySeekable() & 2):
- if not self.fast_winding_hint_message_showed and (seek.isCurrentlySeekable() & 1):
+ if seek and (seek.isCurrentlySeekable() & 1) and not (seek.isCurrentlySeekable() & 2):
+ if not self.fast_winding_hint_message_showed:
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