aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Satconfig.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-11-27 00:50:26 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-11-27 00:50:26 +0000
commit849192972c9dcc9515ee2637e6ffe2a8790c940a (patch)
tree11f73b6503ef6cd89bf0ef5dcf4914f1d2c654be /lib/python/Screens/Satconfig.py
parentf855bd5291c74d34668cdbb77e9c89c80f4a5dc9 (diff)
downloadenigma2-849192972c9dcc9515ee2637e6ffe2a8790c940a.tar.gz
enigma2-849192972c9dcc9515ee2637e6ffe2a8790c940a.zip
move keySave, keyCancel into ConfigList.py, use cancel confirm in satsetup to fix enduser problems ;)
Diffstat (limited to 'lib/python/Screens/Satconfig.py')
-rw-r--r--lib/python/Screens/Satconfig.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py
index d6d9904c..226c3a82 100644
--- a/lib/python/Screens/Satconfig.py
+++ b/lib/python/Screens/Satconfig.py
@@ -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)
-