From 9b6b96172d1d20d9daf3c11bc5f0222f487d53d7 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Mon, 27 Feb 2006 00:27:32 +0000 Subject: - 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) --- lib/python/Components/ConfigList.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/python/Components/ConfigList.py') 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() -- cgit v1.2.3