X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/da51ddf9784483ff34fc51fcf33971018b8794d2..c49fe33f5c6a185d9350d5b63762eea447dd71a6:/lib/python/Screens/Satconfig.py diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index d6d9904c..7b0c9bc9 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -135,7 +135,7 @@ class NimSetup(Screen, ConfigListScreen): self.list.append(getConfigListEntry(_("LOF/L"), currLnb.lofl)) self.list.append(getConfigListEntry(_("LOF/H"), currLnb.lofh)) self.list.append(getConfigListEntry(_("Threshold"), currLnb.threshold)) - self.list.append(getConfigListEntry(_("12V Output"), currLnb.output_12v)) +# self.list.append(getConfigListEntry(_("12V Output"), currLnb.output_12v)) self.list.append(getConfigListEntry(_("Increased voltage"), currLnb.increased_voltage)) def fillAdvancedList(self): @@ -153,11 +153,6 @@ class NimSetup(Screen, ConfigListScreen): self.run() self.close() - def keyCancel(self): - for x in self["config"].list: - x[1].cancel() - self.close() - def __init__(self, session, slotid): Screen.__init__(self, session) self.list = [ ] @@ -198,4 +193,3 @@ class NimSelection(Screen): selection = self["nimlist"].getCurrent() if selection[1].nimType != -1: #unknown/empty self.session.open(NimSetup, selection[1].slotid) -