From: Ronny Strutz Date: Mon, 14 Nov 2005 22:49:37 +0000 (+0000) Subject: set default standby-brightness to 0 X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=d4db62a3c940f3d9dabc97a55dd028b7f869047f;hp=438adb6467ed6396ffd5c2b1bdf789bed4a51b65 set default standby-brightness to 0 --- diff --git a/lib/python/Components/Lcd.py b/lib/python/Components/Lcd.py index 9dc80e9..8861958 100644 --- a/lib/python/Components/Lcd.py +++ b/lib/python/Components/Lcd.py @@ -26,7 +26,7 @@ def InitLcd(): config.lcd = ConfigSubsection(); 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, 1, ""); + config.lcd.standby = configElement("config.lcd.standby", ConfigSlider, 0, ""); config.lcd.invert = configElement("config.lcd.invert", configSelection, 0, ("Disable", "Enable") ); ilcd = LCD() @@ -44,4 +44,5 @@ def InitLcd(): config.lcd.contrast.addNotifier(setLCDcontrast); config.lcd.invert.addNotifier(setLCDinverted); + \ No newline at end of file