aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-03 00:04:29 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-03 00:04:29 +0000
commit0a2ebc75611941d43114f7cd07fb944ae098bf7f (patch)
treeb9965268995a70ca34b543d2c1a72899beb24834 /lib/python/Components
parent37414fb7e205a816e06ccbe6c31a3c5677b81b12 (diff)
downloadenigma2-0a2ebc75611941d43114f7cd07fb944ae098bf7f.tar.gz
enigma2-0a2ebc75611941d43114f7cd07fb944ae098bf7f.zip
fix values
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/RFmod.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/RFmod.py b/lib/python/Components/RFmod.py
index fc5579fc..64b21867 100644
--- a/lib/python/Components/RFmod.py
+++ b/lib/python/Components/RFmod.py
@@ -39,9 +39,9 @@ def InitRFmod():
def setSoundCarrier(configElement):
iRFmod.setSoundCarrier(configElement.value);
def setChannel(configElement):
- iRFmod.setChannel(configElement.value);
+ iRFmod.setChannel(configElement.value + 30);
def setFinetune(configElement):
- iRFmod.setFinetune(configElement.value);
+ iRFmod.setFinetune(configElement.value - 5);
# this will call the "setup-val" initial
config.rfmod.enable.addNotifier(setFunction);