diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-03-09 16:34:21 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-03-09 16:34:21 +0000 |
| commit | 995e780505185fe55afe98b322fa91b55fe7c7a2 (patch) | |
| tree | 5379156a5fa1b660474befe230cc463f5d0bb22e /lib/python/Screens/InfoBar.py | |
| parent | f9fb06837fe2e01d9e76ce7116e88e9e86198e34 (diff) | |
| download | enigma2-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.py | 4 |
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": |
