Revert "small fix"
authorghost <andreas.monzner@multimedia-labs.de>
Fri, 6 Nov 2009 10:43:37 +0000 (11:43 +0100)
committerghost <andreas.monzner@multimedia-labs.de>
Fri, 6 Nov 2009 10:43:37 +0000 (11:43 +0100)
This reverts commit 1c954ba161bc3cd4b838b3c5a423d41847f0382a.

lib/python/Screens/InfoBarGenerics.py

index df85321..9a6a099 100644 (file)
@@ -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