From: Felix Domke Date: Sun, 9 Mar 2008 16:34:21 +0000 (+0000) Subject: fix crash when eof in background: windows cannot be opened from other than the curren... X-Git-Tag: 2.6.0~1482 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/995e780505185fe55afe98b322fa91b55fe7c7a2 fix crash when eof in background: windows cannot be opened from other than the currently execing window, and the eof assumed that. --- 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":