diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-10-01 09:11:48 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-10-01 09:11:48 +0000 |
| commit | 2ec8de5ae8adc05f214b851adbb3529a6b65fd59 (patch) | |
| tree | ad21ddd916e2b21d22ef9644f0443f6d207331e4 /lib/python/Screens/InfoBarGenerics.py | |
| parent | fb9f72903bf23e2b9a63e882398c12dbb6d495f0 (diff) | |
| download | enigma2-2ec8de5ae8adc05f214b851adbb3529a6b65fd59.tar.gz enigma2-2ec8de5ae8adc05f214b851adbb3529a6b65fd59.zip | |
dont show pvr state widget when state ist play
Diffstat (limited to 'lib/python/Screens/InfoBarGenerics.py')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
