From: Ronny Strutz Date: Sat, 3 Sep 2005 00:04:29 +0000 (+0000) Subject: fix values X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=0a2ebc75611941d43114f7cd07fb944ae098bf7f fix values --- diff --git a/lib/python/Components/RFmod.py b/lib/python/Components/RFmod.py index fc5579f..64b2186 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);