aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAxel Buehning <axel.buehning@multimedia-labs.de>2006-01-20 11:34:24 +0000
committerAxel Buehning <axel.buehning@multimedia-labs.de>2006-01-20 11:34:24 +0000
commit01f6932815a6a21ab46bb420be093685378b43dd (patch)
tree6ebe8a61bd0506dfbfc1eba6f21307feb2690b99 /lib/python
parent3df16a12b479b1d4cfddf75f9129ce652855f1b7 (diff)
downloadenigma2-01f6932815a6a21ab46bb420be093685378b43dd.tar.gz
enigma2-01f6932815a6a21ab46bb420be093685378b43dd.zip
fix inverted setting (meaning was inverted too)
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/Lcd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/Lcd.py b/lib/python/Components/Lcd.py
index c14a8f86..552d5485 100644
--- a/lib/python/Components/Lcd.py
+++ b/lib/python/Components/Lcd.py
@@ -28,7 +28,7 @@ def InitLcd():
config.lcd.bright = configElement("config.lcd.bright", ConfigSlider, 10, "")
config.lcd.contrast = configElement("config.lcd.contrast", ConfigSlider, 10, "")
config.lcd.standby = configElement("config.lcd.standby", ConfigSlider, 0, "")
- config.lcd.invert = configElement("config.lcd.invert", configSelection, 0, (("enable", _("Enable")), ("disable", _("Disable"))))
+ config.lcd.invert = configElement("config.lcd.invert", configSelection, 0, (("disable", _("Disable")), ("enable", _("Enable"))))
ilcd = LCD()
@@ -46,4 +46,4 @@ def InitLcd():
config.lcd.invert.addNotifier(setLCDinverted);
- \ No newline at end of file
+