aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-03-16 17:41:29 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-03-16 17:41:29 +0000
commite617623ad35cfdf823d61b7488b6b7d6ba26d608 (patch)
tree3f23f227b08f7339239c795afa9cd626ad2169dd /lib/python
parent4410b0e371cf17191d3476a0c283ee59f629e763 (diff)
downloadenigma2-e617623ad35cfdf823d61b7488b6b7d6ba26d608.tar.gz
enigma2-e617623ad35cfdf823d61b7488b6b7d6ba26d608.zip
Infobar: don't show state when not execing
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 037fe18e..8006520f 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -828,7 +828,7 @@ class InfoBarPVRState:
self.onHide.append(self.pvrStateDialog.hide)
def __mayShow(self):
- if self.seekstate != self.SEEK_STATE_PLAY:
+ if self.seekstate != self.SEEK_STATE_PLAY and self.execing:
self.pvrStateDialog.show()
def __playStateChanged(self, state):