aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ConfigList.py
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-17 00:14:20 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-17 00:14:20 +0000
commitecbb4f7d287688049495dcb048a14458e1268681 (patch)
tree122ad3b62b354f14d12c50449326290275c2f62a /lib/python/Components/ConfigList.py
parent7a900d0687c0c35396396d9fdedc454283312e55 (diff)
downloadenigma2-ecbb4f7d287688049495dcb048a14458e1268681.tar.gz
enigma2-ecbb4f7d287688049495dcb048a14458e1268681.zip
added handleKey
Diffstat (limited to 'lib/python/Components/ConfigList.py')
-rw-r--r--lib/python/Components/ConfigList.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/Components/ConfigList.py b/lib/python/Components/ConfigList.py
index 35ea093c..196381b0 100644
--- a/lib/python/Components/ConfigList.py
+++ b/lib/python/Components/ConfigList.py
@@ -15,6 +15,11 @@ class ConfigList(HTMLComponent, GUIComponent):
selection = self.getCurrent()
selection[1].toggle()
self.invalidateCurrent()
+
+ def handleKey(self, key):
+ selection = self.getCurrent()
+ selection[1].handleKey(key)
+ self.invalidateCurrent()
def getCurrent(self):
return self.l.getCurrentSelection()