From: Andreas Monzner Date: Wed, 1 Oct 2008 09:11:48 +0000 (+0000) Subject: dont show pvr state widget when state ist play X-Git-Tag: 2.6.0~833 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/2ec8de5ae8adc05f214b851adbb3529a6b65fd59 dont show pvr state widget when state ist play --- diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 428ecbc5..f0130fc7 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -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: