From 14b7e204d87ca1ad0d4f3056cf4b923495c261ef Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sun, 1 Jan 2006 21:03:57 +0000 Subject: [PATCH] lcd: fix LCD invert again --- lib/python/Components/Lcd.py | 3 +-- 1 file changed, 1 insertion(+), 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(); -- 2.30.2