From 995e780505185fe55afe98b322fa91b55fe7c7a2 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sun, 9 Mar 2008 16:34:21 +0000 Subject: [PATCH] fix crash when eof in background: windows cannot be opened from other than the currently execing window, and the eof assumed that. --- lib/python/Screens/InfoBar.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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": -- 2.30.2