From: Ronny Strutz Date: Sat, 3 Sep 2005 00:04:29 +0000 (+0000) Subject: fix values X-Git-Tag: 2.6.0~5577 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/0a2ebc75611941d43114f7cd07fb944ae098bf7f fix values --- 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);