diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-17 00:14:20 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-17 00:14:20 +0000 |
| commit | ecbb4f7d287688049495dcb048a14458e1268681 (patch) | |
| tree | 122ad3b62b354f14d12c50449326290275c2f62a /lib/python/Components/ConfigList.py | |
| parent | 7a900d0687c0c35396396d9fdedc454283312e55 (diff) | |
| download | enigma2-ecbb4f7d287688049495dcb048a14458e1268681.tar.gz enigma2-ecbb4f7d287688049495dcb048a14458e1268681.zip | |
added handleKey
Diffstat (limited to 'lib/python/Components/ConfigList.py')
| -rw-r--r-- | lib/python/Components/ConfigList.py | 5 |
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() |
