diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-10 17:42:27 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-10 17:42:27 +0000 |
| commit | 25537984665b96b798b62bb904a7f00fc305b9a3 (patch) | |
| tree | 3a5ebea850804b5cb0fda4496bb451b67a4701c4 /lib/python | |
| parent | 62bbd84a6d1dbe6386fd278b8bdbc81e361e000f (diff) | |
| download | enigma2-25537984665b96b798b62bb904a7f00fc305b9a3.tar.gz enigma2-25537984665b96b798b62bb904a7f00fc305b9a3.zip | |
fix e1like radio mode
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Plugins/Extensions/Makefile.am | 2 | ||||
| -rw-r--r-- | lib/python/Screens/ChannelSelection.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Plugins/Extensions/Makefile.am b/lib/python/Plugins/Extensions/Makefile.am index 576ca701..4b59325e 100644 --- a/lib/python/Plugins/Extensions/Makefile.am +++ b/lib/python/Plugins/Extensions/Makefile.am @@ -1,3 +1,3 @@ -SUBDIRS = TuxboxPlugins WebInterface FileManager CutListEditor ZappingAlternatives FritzCall +SUBDIRS = TuxboxPlugins FileManager CutListEditor ZappingAlternatives diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 241f5a11..e0337450 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -956,7 +956,7 @@ class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit, ChannelSelect def setModeRadio(self): if self.revertMode is None and config.servicelist.lastmode.value == "tv": self.revertMode = MODE_TV - if config.usage.e1like_radio_mode.value == "yes": + if config.usage.e1like_radio_mode.value: self.history = self.history_radio self.lastservice = config.radio.lastservice self.lastroot = config.radio.lastroot @@ -965,7 +965,7 @@ class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit, ChannelSelect self.setMode() def __onCreate(self): - if config.usage.e1like_radio_mode.value == "yes": + if config.usage.e1like_radio_mode.value: if config.servicelist.lastmode.value == "tv": self.setModeTv() else: |
