git.cweiske.de
/
enigma2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a900d0
)
added handleKey
author
Ronny Strutz
<
[email protected]
>
Wed, 17 Aug 2005 00:14:20 +0000
(
00:14
+0000)
committer
Ronny Strutz
<
[email protected]
>
Wed, 17 Aug 2005 00:14:20 +0000
(
00:14
+0000)
lib/python/Components/ConfigList.py
patch
|
blob
|
history
diff --git
a/lib/python/Components/ConfigList.py
b/lib/python/Components/ConfigList.py
index 35ea093c0b5235c8aa7a1ec89fba7a0cd20cbef9..196381b09fc6e607465243145aeebf61e3cdde24 100644
(file)
--- 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()