From: Felix Domke Date: Sun, 1 Jan 2006 21:03:57 +0000 (+0000) Subject: lcd: fix LCD invert again X-Git-Tag: 2.6.0~4555 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/14b7e204d87ca1ad0d4f3056cf4b923495c261ef?ds=sidebyside lcd: fix LCD invert again --- 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();