From: Felix Domke Date: Sat, 19 Nov 2005 02:16:34 +0000 (+0000) Subject: lcd: fix inverted mode X-Git-Tag: 2.6.0~5055 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/d2ceae9583bc62daa872c316f8952b9a6a416a69?ds=sidebyside lcd: fix inverted mode --- 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