X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FSatconfig.py;h=8748438af344d7a10b821ef8a9c36b6137f298e6;hp=21063942c5f5119f6b0a6a150eac40e50af373d3;hb=a4332bd8d55eb4b54972f64c91aefd42f388de52;hpb=bf603aaeef3e12783075c7559b30038e91e68667 diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 2106394..8748438 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -98,9 +98,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 +141,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