diff options
Diffstat (limited to 'lib/python')
| -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": |
