From d2ceae9583bc62daa872c316f8952b9a6a416a69 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sat, 19 Nov 2005 02:16:34 +0000 Subject: [PATCH] lcd: fix inverted mode --- lib/python/Components/Lcd.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/python/Components/Lcd.py b/lib/python/Components/Lcd.py index 88619589..42f15698 100644 --- a/lib/python/Components/Lcd.py +++ b/lib/python/Components/Lcd.py @@ -19,6 +19,8 @@ class LCD: pass def setInverted(self, value): + if value: + value = 255 eDBoxLCD.getInstance().setInverted(value) pass -- 2.11.0