added handleKey
authorRonny Strutz <ronny.strutz@multimedia-labs.de>
Wed, 17 Aug 2005 00:14:20 +0000 (00:14 +0000)
committerRonny Strutz <ronny.strutz@multimedia-labs.de>
Wed, 17 Aug 2005 00:14:20 +0000 (00:14 +0000)
lib/python/Components/ConfigList.py

index 35ea093c0b5235c8aa7a1ec89fba7a0cd20cbef9..196381b09fc6e607465243145aeebf61e3cdde24 100644 (file)
@@ -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()