diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2011-01-26 15:29:53 +0100 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2011-01-26 15:29:53 +0100 |
| commit | 7fb088ec04db7eb68ff7294393f53ba33f533655 (patch) | |
| tree | 50d84d0d93074a53c2a9865f90157c2fa6aed7af | |
| parent | a1ffc0e6e0f33d5b9435e82123513b1dbb6a1c6c (diff) | |
| download | enigma2-7fb088ec04db7eb68ff7294393f53ba33f533655.tar.gz enigma2-7fb088ec04db7eb68ff7294393f53ba33f533655.zip | |
fix restart of playback after EOF (fixes bug #241)
| -rw-r--r-- | lib/python/Screens/InfoBar.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index 5b061245..55062878 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: |
