aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-01 09:11:48 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-01 09:11:48 +0000
commit2ec8de5ae8adc05f214b851adbb3529a6b65fd59 (patch)
treead21ddd916e2b21d22ef9644f0443f6d207331e4 /lib/python
parentfb9f72903bf23e2b9a63e882398c12dbb6d495f0 (diff)
downloadenigma2-2ec8de5ae8adc05f214b851adbb3529a6b65fd59.tar.gz
enigma2-2ec8de5ae8adc05f214b851adbb3529a6b65fd59.zip
dont show pvr state widget when state ist play
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py2
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: