aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-11 22:32:11 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-11 22:32:11 +0000
commit39627668ca36cecbc78ec5f677061f128957b550 (patch)
tree91cf25ef0c1e62025887ce4498f2240757c491fa /lib
parent0a35f28652b7c5c175f4d90d9cce7c21c544db99 (diff)
downloadenigma2-39627668ca36cecbc78ec5f677061f128957b550.tar.gz
enigma2-39627668ca36cecbc78ec5f677061f128957b550.zip
fix rfmod audio (on and off was swapped)
Diffstat (limited to 'lib')
-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 0ab4a815..be088a53 100644
--- a/lib/python/Components/RFmod.py
+++ b/lib/python/Components/RFmod.py
@@ -14,7 +14,7 @@ class RFmod:
def setTestmode(self, value):
eRFmod.getInstance().setTestmode(value)
def setSoundFunction(self, value):
- eRFmod.getInstance().setSoundFunction(value)
+ eRFmod.getInstance().setSoundFunction(not value)
def setSoundCarrier(self, value):
eRFmod.getInstance().setSoundCarrier(value)
def setChannel(self, value):