X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/bf603aaeef3e12783075c7559b30038e91e68667..f5d4a470082192900f6f25a0f7d66f88f6bda0c4:/lib/python/Screens/Satconfig.py diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 21063942..f2cdaace 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -87,10 +87,13 @@ class NimSetup(Screen): if (self["config"].getCurrent()[1].parent.enabled == True): self["config"].handleKey(config.key[str(number)]) - def keySave(self): + def run(self): for x in self["config"].list: x[1].save() nimmanager.sec.update() + + def keySave(self): + self.run() self.close() def keyCancel(self): @@ -98,9 +101,10 @@ class NimSetup(Screen): x[1].cancel() self.close() - def __init__(self, session, nim): + def __init__(self, session, slotid): Screen.__init__(self, session) - self.nim = nim + + self.nim = nimmanager.nimList()[slotid][1] self["actions"] = NumberActionMap(["SetupActions"], { @@ -140,5 +144,5 @@ class NimSelection(Screen): def okbuttonClick(self): selection = self["nimlist"].getCurrent() if selection[1].nimType != -1: #unknown/empty - self.session.open(NimSetup, selection[1]) + self.session.open(NimSetup, selection[1].slotid) \ No newline at end of file