diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-11-19 02:16:34 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-11-19 02:16:34 +0000 |
| commit | d2ceae9583bc62daa872c316f8952b9a6a416a69 (patch) | |
| tree | 4606604f137757a3a423b651a199d19df727f66a /lib/python/Components/Lcd.py | |
| parent | c8af50a4b30d74d6ee4f8c985177e16edf58e9d1 (diff) | |
| download | enigma2-d2ceae9583bc62daa872c316f8952b9a6a416a69.tar.gz enigma2-d2ceae9583bc62daa872c316f8952b9a6a416a69.zip | |
lcd: fix inverted mode
Diffstat (limited to 'lib/python/Components/Lcd.py')
| -rw-r--r-- | lib/python/Components/Lcd.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 |
