dont show pvr state widget when state ist play
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Wed, 1 Oct 2008 09:11:48 +0000 (09:11 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Wed, 1 Oct 2008 09:11:48 +0000 (09:11 +0000)
lib/python/Screens/InfoBarGenerics.py

index 428ecbc..f0130fc 100644 (file)
@@ -1012,7 +1012,7 @@ class InfoBarTimeshiftState(InfoBarPVRState):
                InfoBarPVRState.__init__(self, screen=TimeshiftState)
 
        def _mayShow(self):
-               if self.execing and self.timeshift_enabled:
+               if self.execing and self.timeshift_enabled and self.seekstate != self.SEEK_STATE_PLAY:
                        self.pvrStateDialog.show()
 
 class InfoBarShowMovies: