diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-30 18:19:45 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-30 18:19:45 +0000 |
| commit | 899dc0f3d28c8321954f041ebd0c5611aec25857 (patch) | |
| tree | e438a2d68be71e9e4b621448669d987221885719 /lib/python | |
| parent | 2df9bca44791364dcea669d9d2dbf11adb3239bd (diff) | |
| download | enigma2-899dc0f3d28c8321954f041ebd0c5611aec25857.tar.gz enigma2-899dc0f3d28c8321954f041ebd0c5611aec25857.zip | |
dont show toneburst(MiniDiSEqC) setting when no diseqc is used
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Satconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 51928588..8bd33a8a 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -82,6 +82,7 @@ class NimSetup(Screen): self.advancedDiseqcMode = getConfigListEntry(_("DiSEqC mode"), currLnb.diseqcMode) self.list.append(self.advancedDiseqcMode) if currentConfigSelectionElement(currLnb.diseqcMode) != "none": + self.list.append(getConfigListEntry(_("Toneburst"), currLnb.toneburst)) self.list.append(getConfigListEntry(_("Committed DiSEqC command"), currLnb.commitedDiseqcCommand)) self.list.append(getConfigListEntry(_("Fast DiSEqC"), currLnb.fastDiseqc)) self.list.append(getConfigListEntry(_("Sequence repeat"), currLnb.sequenceRepeat)) @@ -108,7 +109,6 @@ class NimSetup(Screen): self.list.append(getConfigListEntry(_("Threshold"), currLnb.threshold)) self.list.append(getConfigListEntry(_("12V Output"), currLnb.output_12v)) self.list.append(getConfigListEntry(_("Increased voltage"), currLnb.increased_voltage)) - self.list.append(getConfigListEntry(_("Toneburst"), currLnb.toneburst)) 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"]): |
