diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2011-01-26 15:15:33 +0100 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2011-01-26 15:15:33 +0100 |
| commit | 79f0f14b59c1943261983e92f0b97b9ce7df4bed (patch) | |
| tree | e42ace0872768a2e0633bd9e2fb1c393acb8f988 /lib | |
| parent | 44fb836216b0873cbd2de53029cbe6cd56f24ee1 (diff) | |
| download | enigma2-79f0f14b59c1943261983e92f0b97b9ce7df4bed.tar.gz enigma2-79f0f14b59c1943261983e92f0b97b9ce7df4bed.zip | |
fix restart of playback after EOF (fixes bug #241)
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Screens/InfoBar.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index 5b061245..a6403a30 100644 --- a/lib/python/Screens/InfoBar.py +++ b/lib/python/Screens/InfoBar.py @@ -174,7 +174,7 @@ class MoviePlayer(InfoBarBase, InfoBarShowHide, \ (_("Yes, returning to movie list"), "movielist"), (_("Yes, and delete this movie"), "quitanddelete"), (_("No"), "continue"), - (_("No, but restart from begin"), "restart") + (_("No, but restart from the beginning"), "restart") ) from Screens.ChoiceBox import ChoiceBox @@ -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: |
