From 2ec8de5ae8adc05f214b851adbb3529a6b65fd59 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Wed, 1 Oct 2008 09:11:48 +0000 Subject: [PATCH] dont show pvr state widget when state ist play --- lib/python/Screens/InfoBarGenerics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 428ecbc..f0130fc 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: -- 2.7.4