diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-21 21:13:49 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-21 21:13:49 +0000 |
| commit | 1b1a1efbe9a61b6f05d46821b4d22f8e5c84a931 (patch) | |
| tree | 22ef28e1ad0c33bb9121228f665586f85f2663f8 /lib/python/Screens/InfoBar.py | |
| parent | a8f5cf18bfbafa9f0850df2f6a1de60d89e820bb (diff) | |
| download | enigma2-1b1a1efbe9a61b6f05d46821b4d22f8e5c84a931.tar.gz enigma2-1b1a1efbe9a61b6f05d46821b4d22f8e5c84a931.zip | |
show movieSelection on up/down keys in movie player
TODO move the selection to the currently playing movie
Diffstat (limited to 'lib/python/Screens/InfoBar.py')
| -rw-r--r-- | lib/python/Screens/InfoBar.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index b28ce515..23754824 100644 --- a/lib/python/Screens/InfoBar.py +++ b/lib/python/Screens/InfoBar.py @@ -80,3 +80,10 @@ class MoviePlayer(Screen, InfoBarVolumeControl, InfoBarShowHide, InfoBarPowerKey if answer == True: self.session.nav.playService(self.lastservice) self.close() + + def showMovies(self): + self.session.openWithCallback(self.movieSelected, MovieSelection) + + def movieSelected(self, service): + if service is not None: + self.session.nav.playService(service) |
