aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/RFmod.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/RFmod.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/RFmod.py')
-rw-r--r--lib/python/Components/RFmod.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/RFmod.py b/lib/python/Components/RFmod.py
index 5ea88ec0..6c7214bc 100644
--- a/lib/python/Components/RFmod.py
+++ b/lib/python/Components/RFmod.py
@@ -26,7 +26,7 @@ def InitRFmod():
config.rfmod.sound = configElement("config.rfmod.sound", configSelection, 0, (("enable", _("Enable")), ("disable", _("Disable"))) );
config.rfmod.soundcarrier = configElement("config.rfmod.soundcarrier", configSelection, 1, ("4.5 MHz", "5.5 MHz", "6.0 MHz", "6.5 MHz") );
config.rfmod.channel = configElement("config.rfmod.channel", configSelection, 6, ("30", "31", "32", "33", "34", "35", "36", "37", "38", "39") );
- config.rfmod.finetune = configElement("config.rfmod.finetune", ConfigSlider, 5, "");
+ config.rfmod.finetune = configElement("config.rfmod.finetune", configSlider, 5, (1, 10));
iRFmod = RFmod()