diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-21 18:12:41 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-21 18:12:41 +0000 |
| commit | 350338b92543c7753db8753dca89adb885d30e9b (patch) | |
| tree | ddb9921e8135b8c913f684c6940e9be64a4a0e38 /lib/python/Screens | |
| parent | 82cafa6d31a2023abf2afc300ba963080ad21806 (diff) | |
| download | enigma2-350338b92543c7753db8753dca89adb885d30e9b.tar.gz enigma2-350338b92543c7753db8753dca89adb885d30e9b.zip | |
provider-selection is now possible for cable and terrestrial
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/Satconfig.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 1371e6ee..db200ee1 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -39,6 +39,12 @@ class NimSetup(Screen): self.createPositionerSetup(self.nim, self.list) else: print "FIXME: implement advanced mode" + + elif (nimmanager.getNimType(self.nim.slotid) == nimmanager.nimType["DVB-C"]): + self.list.append(getConfigListEntry(_("Cable provider"), config.Nims[self.nim.slotid].cable)) + elif (nimmanager.getNimType(self.nim.slotid) == nimmanager.nimType["DVB-T"]): + self.list.append(getConfigListEntry(_("Terrestrial provider"), config.Nims[self.nim.slotid].terrestrial)) + self["config"].list = self.list self["config"].l.setList(self.list) |
