aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/InfoBar.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-03-09 16:34:21 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-03-09 16:34:21 +0000
commit995e780505185fe55afe98b322fa91b55fe7c7a2 (patch)
tree5379156a5fa1b660474befe230cc463f5d0bb22e /lib/python/Screens/InfoBar.py
parentf9fb06837fe2e01d9e76ce7116e88e9e86198e34 (diff)
downloadenigma2-995e780505185fe55afe98b322fa91b55fe7c7a2.tar.gz
enigma2-995e780505185fe55afe98b322fa91b55fe7c7a2.zip
fix crash when eof in background: windows cannot be opened from other than the currently execing window, and the eof assumed that.
Diffstat (limited to 'lib/python/Screens/InfoBar.py')
-rw-r--r--lib/python/Screens/InfoBar.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py
index 48ff8493..a6f4fb19 100644
--- a/lib/python/Screens/InfoBar.py
+++ b/lib/python/Screens/InfoBar.py
@@ -181,7 +181,9 @@ class MoviePlayer(InfoBarShowHide, \
self.doSeek(0)
def doEofInternal(self, playing):
- if not playing:
+ if not self.execing:
+ return
+ if not playing :
return
self.is_closing = True
if config.usage.on_movie_eof.value == "ask":