aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Satconfig.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-09 09:38:17 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-09 09:38:17 +0000
commita4332bd8d55eb4b54972f64c91aefd42f388de52 (patch)
treee5bb430da56480a82558cf344661ff11d8b80f8b /lib/python/Screens/Satconfig.py
parent1a1ed192c7d9009498b004f52334e3c705380a1c (diff)
downloadenigma2-a4332bd8d55eb4b54972f64c91aefd42f388de52.tar.gz
enigma2-a4332bd8d55eb4b54972f64c91aefd42f388de52.zip
use slotid as parameter for the SatSetup instead of nim for easier inclusing into the start wizard
add ability to pass arguments to a screen (the args-tag is evaluated with eval())
Diffstat (limited to 'lib/python/Screens/Satconfig.py')
-rw-r--r--lib/python/Screens/Satconfig.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py
index e6033ebc..8748438a 100644
--- a/lib/python/Screens/Satconfig.py
+++ b/lib/python/Screens/Satconfig.py
@@ -98,13 +98,10 @@ class NimSetup(Screen):
x[1].cancel()
self.close()
- def __init__(self, session, nim = None):
+ def __init__(self, session, slotid):
Screen.__init__(self, session)
- if nim == None:
- self.nim = nimmanager.nimList()[0][1]
- else:
- self.nim = nim
+ self.nim = nimmanager.nimList()[slotid][1]
self["actions"] = NumberActionMap(["SetupActions"],
{
@@ -144,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