aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-01-01 21:03:57 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-01-01 21:03:57 +0000
commit14b7e204d87ca1ad0d4f3056cf4b923495c261ef (patch)
tree573a6fc887670546c036cf04bd4011e7e24ca650 /lib/python/Components
parentd3df119df8520deac7a05ce9e7be2e4a68a2127c (diff)
downloadenigma2-14b7e204d87ca1ad0d4f3056cf4b923495c261ef.tar.gz
enigma2-14b7e204d87ca1ad0d4f3056cf4b923495c261ef.zip
lcd: fix LCD invert again
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Lcd.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/Components/Lcd.py b/lib/python/Components/Lcd.py
index 77975f4d..c14a8f86 100644
--- a/lib/python/Components/Lcd.py
+++ b/lib/python/Components/Lcd.py
@@ -21,8 +21,7 @@ class LCD:
def setInverted(self, value):
if value:
value = 255
- eDBoxLCD.getInstance().setInverted(1 - value)
- pass
+ eDBoxLCD.getInstance().setInverted(value)
def InitLcd():
config.lcd = ConfigSubsection();