From 7fb088ec04db7eb68ff7294393f53ba33f533655 Mon Sep 17 00:00:00 2001 From: Fraxinas Date: Wed, 26 Jan 2011 15:29:53 +0100 Subject: [PATCH] fix restart of playback after EOF (fixes bug #241) --- lib/python/Screens/InfoBar.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index 5b06124..5506287 100644 --- a/lib/python/Screens/InfoBar.py +++ b/lib/python/Screens/InfoBar.py @@ -221,6 +221,7 @@ class MoviePlayer(InfoBarBase, InfoBarShowHide, \ self.session.nav.stopService() elif answer == "restart": self.doSeek(0) + self.setSeekState(self.SEEK_STATE_PLAY) def doEofInternal(self, playing): if not self.execing: -- 2.7.4