diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-11-09 10:44:56 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-11-09 10:44:56 +0000 |
| commit | 08a14fad38e5c65b5de7875b1d9e20117f5a7513 (patch) | |
| tree | ff3c99a34ec65de2c3029a889acba29b29984619 /lib/python/Screens/ChannelSelection.py | |
| parent | e6798f7c2fb64cd89bd64b70078f9f4e89c62ef1 (diff) | |
| download | enigma2-08a14fad38e5c65b5de7875b1d9e20117f5a7513.tar.gz enigma2-08a14fad38e5c65b5de7875b1d9e20117f5a7513.zip | |
small radiomode fix
Diffstat (limited to 'lib/python/Screens/ChannelSelection.py')
| -rw-r--r-- | lib/python/Screens/ChannelSelection.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index c50d82bc..cec2e702 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -1316,9 +1316,6 @@ class ChannelSelectionRadio(ChannelSelectionBase, ChannelSelectionEdit, ChannelS ChannelSelectionEdit.__init__(self) ChannelSelectionEPG.__init__(self) self.infobar = infobar - config.radio = ConfigSubsection(); - config.radio.lastservice = ConfigText() - config.radio.lastroot = ConfigText() self.onLayoutFinish.append(self.onCreate) self.info = session.instantiateDialog(RadioInfoBar) # our simple infobar @@ -1421,6 +1418,8 @@ class ChannelSelectionRadio(ChannelSelectionBase, ChannelSelectionEdit, ChannelS if lastservice.valid(): self.servicelist.setCurrent(lastservice) self.session.nav.playService(lastservice) + else: + self.session.nav.stopService() self.info.show() def channelSelected(self): # just return selected service |
