aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-11-19 02:16:34 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-11-19 02:16:34 +0000
commitd2ceae9583bc62daa872c316f8952b9a6a416a69 (patch)
tree4606604f137757a3a423b651a199d19df727f66a /lib/python/Components
parentc8af50a4b30d74d6ee4f8c985177e16edf58e9d1 (diff)
downloadenigma2-d2ceae9583bc62daa872c316f8952b9a6a416a69.tar.gz
enigma2-d2ceae9583bc62daa872c316f8952b9a6a416a69.zip
lcd: fix inverted mode
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Lcd.py2
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