aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Satconfig.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-09 11:29:37 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-09 11:29:37 +0000
commitc08166b6d0671d136ca9c62ce9c915e426cff2f7 (patch)
tree1d77a10f647950cc2c8ac8ef37c7903caed97e53 /lib/python/Screens/Satconfig.py
parent796ca1530ab14e7694e5569d136ca128619d8e07 (diff)
downloadenigma2-c08166b6d0671d136ca9c62ce9c915e426cff2f7.tar.gz
enigma2-c08166b6d0671d136ca9c62ce9c915e426cff2f7.zip
use step attribute to point to the next step for a listbox entry in the wizard
scanning is now possible through the wizard
Diffstat (limited to 'lib/python/Screens/Satconfig.py')
-rw-r--r--lib/python/Screens/Satconfig.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py
index 8748438a..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):