aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-31 01:16:47 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-31 01:16:47 +0000
commit63b2d1d7db3851d440d0d0a7995b1f1ee19d7945 (patch)
tree7b7b9c9185565fd7cdada0c99ad905a1b828bea8 /lib/python/Components
parentdbfb28898da3f2baea2921f7ab7db323b3ca8a88 (diff)
downloadenigma2-63b2d1d7db3851d440d0d0a7995b1f1ee19d7945.tar.gz
enigma2-63b2d1d7db3851d440d0d0a7995b1f1ee19d7945.zip
add ref to list
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/ConfigList.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/ConfigList.py b/lib/python/Components/ConfigList.py
index 196381b0..3114231e 100644
--- a/lib/python/Components/ConfigList.py
+++ b/lib/python/Components/ConfigList.py
@@ -10,6 +10,7 @@ class ConfigList(HTMLComponent, GUIComponent):
self.l = eListboxPythonConfigContent()
self.l.setList(list)
self.l.setSeperation(100)
+ self.list = list
def toggle(self):
selection = self.getCurrent()
@@ -20,7 +21,7 @@ class ConfigList(HTMLComponent, GUIComponent):
selection = self.getCurrent()
selection[1].handleKey(key)
self.invalidateCurrent()
-
+
def getCurrent(self):
return self.l.getCurrentSelection()