aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-14 03:06:01 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-14 03:06:01 +0000
commit8c7ee8c9c5a39ffb2e6bedc48d608c9c44ca79fb (patch)
tree3a8bcbab815dec0993e78475fa6aa5ee7455f0f3 /lib/python
parent6047456faa97f18ca8b6ea7bfbb2ac1856765580 (diff)
downloadenigma2-8c7ee8c9c5a39ffb2e6bedc48d608c9c44ca79fb.tar.gz
enigma2-8c7ee8c9c5a39ffb2e6bedc48d608c9c44ca79fb.zip
set lcd to setup-value (for standby)
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Standby.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py
index bb38da10..0f718151 100644
--- a/lib/python/Screens/Standby.py
+++ b/lib/python/Screens/Standby.py
@@ -1,5 +1,6 @@
from Screen import Screen
from Components.ActionMap import ActionMap
+from Components.config import config
from enigma import *
class Standby(Screen):
@@ -9,6 +10,7 @@ class Standby(Screen):
eAVSwitch.getInstance().setInput(0)
self.infobar.servicelist.zap()
self.leaveMute()
+ eDBoxLCD.getInstance().setLCDBrightness(config.lcd.bright.value * 20)
self.close()
def setMute(self):
@@ -36,8 +38,6 @@ class Standby(Screen):
self.setMute()
self.session.nav.stopService()
eAVSwitch.getInstance().setInput(1)
-
-
- #stop/pause? playing services
- #switch off avs
+ eDBoxLCD.getInstance().setLCDBrightness(config.lcd.standby.value * 20)
+
\ No newline at end of file