diff options
| author | Axel Buehning <axel.buehning@multimedia-labs.de> | 2006-02-02 13:44:53 +0000 |
|---|---|---|
| committer | Axel Buehning <axel.buehning@multimedia-labs.de> | 2006-02-02 13:44:53 +0000 |
| commit | 1d3a72af23aab9f33b22fd55b95ac0aed1ae0473 (patch) | |
| tree | 1a86657d7ca20b887149619383e987abdf802f5c /lib/python/Components | |
| parent | aa5f0da5970746434fe4deea234a98b35857c473 (diff) | |
| download | enigma2-1d3a72af23aab9f33b22fd55b95ac0aed1ae0473.tar.gz enigma2-1d3a72af23aab9f33b22fd55b95ac0aed1ae0473.zip | |
fix swapped rfmod test mode
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/RFmod.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/RFmod.py b/lib/python/Components/RFmod.py index 98571819..5ea88ec0 100644 --- a/lib/python/Components/RFmod.py +++ b/lib/python/Components/RFmod.py @@ -22,7 +22,7 @@ def InitRFmod(): config.rfmod = ConfigSubsection(); config.rfmod.enable = configElement("config.rfmod.enable", configSelection, 1, (("enable", _("Enable")), ("disable", _("Disable"))) ); - config.rfmod.test = configElement("config.rfmod.test", configSelection, 1, (("enable", _("Enable")), ("disable", _("Disable"))) ); + config.rfmod.test = configElement("config.rfmod.test", configSelection, 0, (("disable", _("Disable")), ("enable", _("Enable"))) ); 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") ); |
