aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-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()