git.cweiske.de
/
enigma2.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
remove unneeded del...
[enigma2.git]
/
lib
/
python
/
Components
/
ConfigList.py
diff --git
a/lib/python/Components/ConfigList.py
b/lib/python/Components/ConfigList.py
index d1b295baedff92dceff541a19474f26e0f4aca25..00949e2fe49943ec38985ed151bddc467b26835b 100644
(file)
--- a/
lib/python/Components/ConfigList.py
+++ b/
lib/python/Components/ConfigList.py
@@
-9,7
+9,7
@@
class ConfigList(HTMLComponent, GUIComponent, object):
def __init__(self, list, session = None):
GUIComponent.__init__(self)
self.l = eListboxPythonConfigContent()
def __init__(self, list, session = None):
GUIComponent.__init__(self)
self.l = eListboxPythonConfigContent()
- self.l.setSeperation(
1
00)
+ self.l.setSeperation(
2
00)
self.timer = eTimer()
self.list = list
self.onSelectionChanged = [ ]
self.timer = eTimer()
self.list = list
self.onSelectionChanged = [ ]
@@
-24,7
+24,7
@@
class ConfigList(HTMLComponent, GUIComponent, object):
def execEnd(self):
rcinput = eRCInput.getInstance()
rcinput.setKeyboardMode(rcinput.kmNone)
def execEnd(self):
rcinput = eRCInput.getInstance()
rcinput.setKeyboardMode(rcinput.kmNone)
- self.timer.
timeout.get()
.remove(self.timeout)
+ self.timer.
callback
.remove(self.timeout)
def toggle(self):
selection = self.getCurrent()
def toggle(self):
selection = self.getCurrent()
@@
-77,6
+77,7
@@
class ConfigList(HTMLComponent, GUIComponent, object):
if self.current:
self.current[1].onDeselect(self.session)
instance.selectionChanged.get().remove(self.selectionChanged)
if self.current:
self.current[1].onDeselect(self.session)
instance.selectionChanged.get().remove(self.selectionChanged)
+ instance.setContent(None)
def setList(self, l):
self.timer.stop()
def setList(self, l):
self.timer.stop()
@@
-171,12
+172,15
@@
class ConfigListScreen:
def keyNumberGlobal(self, number):
self["config"].handleKey(KEY_0 + number)
self.__changed()
def keyNumberGlobal(self, number):
self["config"].handleKey(KEY_0 + number)
self.__changed()
+
+ def saveAll(self):
+ for x in self["config"].list:
+ x[1].save()
# keySave and keyCancel are just provided in case you need them.
# you have to call them by yourself.
def keySave(self):
# keySave and keyCancel are just provided in case you need them.
# you have to call them by yourself.
def keySave(self):
- for x in self["config"].list:
- x[1].save()
+ self.saveAll()
self.close()
def cancelConfirm(self, result):
self.close()
def cancelConfirm(self, result):