diff options
| author | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-09-25 14:50:05 +0000 |
|---|---|---|
| committer | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-09-25 14:50:05 +0000 |
| commit | 95386a54243d4e2e3b4dd85862e8dc6b8fca3b6c (patch) | |
| tree | dd715989d680ac4aa8e8cecc1dfe69e777b89d4d /lib/python/Plugins/Extensions | |
| parent | c12d79d0320d6d16180b02ce1917b14b63f5278e (diff) | |
| download | enigma2-95386a54243d4e2e3b4dd85862e8dc6b8fca3b6c.tar.gz enigma2-95386a54243d4e2e3b4dd85862e8dc6b8fca3b6c.zip | |
fix pause, introduce rudimentary fast forward and get rid of latency of AudioSelection. however, all of this is far
away from being frame accurate (yet).
Diffstat (limited to 'lib/python/Plugins/Extensions')
| -rw-r--r-- | lib/python/Plugins/Extensions/MediaPlayer/plugin.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py index 27cf1d5e..f819d782 100644 --- a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py +++ b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py @@ -738,7 +738,10 @@ class MediaPlayer(Screen, InfoBarBase, InfoBarSeek, InfoBarAudioSelection, InfoB def pauseEntry(self): self.pauseService() - self.show() + if self.seekstate == self.SEEK_STATE_PAUSE: + self.show() + else: + self.hide() def stopEntry(self): self.playlist.stopFile() |
