aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ConfigList.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-27 00:27:32 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-27 00:27:32 +0000
commit9b6b96172d1d20d9daf3c11bc5f0222f487d53d7 (patch)
tree8d40908a344ef075515096eb6e7de2c3743553b0 /lib/python/Components/ConfigList.py
parent24f6e51878555666f9110839254b5cf914048248 (diff)
downloadenigma2-9b6b96172d1d20d9daf3c11bc5f0222f487d53d7.tar.gz
enigma2-9b6b96172d1d20d9daf3c11bc5f0222f487d53d7.zip
- add positioner plugin (just basic gui atm)
- some changes to ConfigSlider (is now called "configSlider" and has a step width and max value now) - add BER/SNR/AGC display to the manual single transponder scan (just gui, no functionality yet)
Diffstat (limited to 'lib/python/Components/ConfigList.py')
-rw-r--r--lib/python/Components/ConfigList.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/Components/ConfigList.py b/lib/python/Components/ConfigList.py
index 7ed00014..6ff9116f 100644
--- a/lib/python/Components/ConfigList.py
+++ b/lib/python/Components/ConfigList.py
@@ -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()