aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Satconfig.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-08-08 19:14:23 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-08-08 19:14:23 +0000
commitb5b9131ed13e9184efd1ae6a20ca2ce64342ab5e (patch)
treeaa0989aeaea7ae9662dd60b3a70ad6dfb6cafbc3 /lib/python/Screens/Satconfig.py
parente6c11dc8aed12ed11dcdcba98a14071308e33e0d (diff)
downloadenigma2-b5b9131ed13e9184efd1ae6a20ca2ce64342ab5e.tar.gz
enigma2-b5b9131ed13e9184efd1ae6a20ca2ce64342ab5e.zip
revert 128 LNB change... this was per Tuner
so now its possible to configure up to 36 LNBs per Tuner (32 + 4 just for motorized dishes) (max 144 LNBs now for all Tuners)
Diffstat (limited to 'lib/python/Screens/Satconfig.py')
-rw-r--r--lib/python/Screens/Satconfig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py
index 37208cdc..21c40905 100644
--- a/lib/python/Screens/Satconfig.py
+++ b/lib/python/Screens/Satconfig.py
@@ -214,7 +214,7 @@ class NimSetup(Screen, ConfigListScreen):
self.list.append(getConfigListEntry(_("Voltage mode"), Sat.voltage))
self.list.append(getConfigListEntry(_("Tone mode"), Sat.tonemode))
if currLnb and currLnb.diseqcMode.value == "1_2":
- if lnbnum < 125:
+ if lnbnum < 33:
self.advancedUsalsEntry = getConfigListEntry(_("Use usals for this sat"), Sat.usals)
self.list.append(self.advancedUsalsEntry)
if not Sat.usals.value:
@@ -224,7 +224,7 @@ class NimSetup(Screen, ConfigListScreen):
self.advancedLnbsEntry = getConfigListEntry(_("LNB"), Sat.lnb)
self.list.append(self.advancedLnbsEntry)
if currLnb:
- if lnbnum < 125:
+ if lnbnum < 33:
self.advancedDiseqcMode = getConfigListEntry(_("DiSEqC mode"), currLnb.diseqcMode)
self.list.append(self.advancedDiseqcMode)
if currLnb.diseqcMode.value != "none":