diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-03-17 20:16:48 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-03-17 20:16:48 +0100 |
| commit | 0c04d5e3c5d06f04638d172fa1c9a57cad32d28a (patch) | |
| tree | 291071ef75757011dbcc561e6d187d4a250e9292 /lib/python/Plugins/Extensions | |
| parent | 4e8e9db9aff5f54d8159592875369a5f5696ea19 (diff) | |
| download | enigma2-0c04d5e3c5d06f04638d172fa1c9a57cad32d28a.tar.gz enigma2-0c04d5e3c5d06f04638d172fa1c9a57cad32d28a.zip | |
Mediaplayer/plugin.py: dont show mediaplayer gui after seek
Diffstat (limited to 'lib/python/Plugins/Extensions')
| -rw-r--r-- | lib/python/Plugins/Extensions/MediaPlayer/plugin.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py index e26c65d4..e8504ff0 100644 --- a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py +++ b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py @@ -148,7 +148,6 @@ class MediaPlayer(Screen, InfoBarBase, InfoBarSeek, InfoBarAudioSelection, InfoB self.player.show() return NumberActionMap.action(self, contexts, action) - self["OkCancelActions"] = HelpableActionMap(self, "OkCancelActions", { "ok": (self.ok, _("add file to playlist")), @@ -386,7 +385,7 @@ class MediaPlayer(Screen, InfoBarBase, InfoBarSeek, InfoBarAudioSelection, InfoB self.updateCurrentInfo() def showAfterSeek(self): - self.show() + pass def showAfterCuesheetOperation(self): self.show() |
