- add positioner plugin (just basic gui atm)
[enigma2.git] / lib / python / Components / ConfigList.py
index 7ed00014377ccf732695465b74d47976c5d07502..6ff9116ffef91da2b4bc535276badb20583ed8e9 100644 (file)
@@ -19,8 +19,9 @@ class ConfigList(HTMLComponent, GUIComponent):
 
        def handleKey(self, key):
                selection = self.getCurrent()
-               selection[1].handleKey(key)
-               self.invalidateCurrent()
+               if selection[1].parent.enabled:
+                       selection[1].handleKey(key)
+                       self.invalidateCurrent()
 
        def getCurrent(self):
                return self.l.getCurrentSelection()