X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/2a2ec738fb169d58f1d36b2fc0e1c509822c33f4..4081a2ebc826bf1559832cc2c034dc9e0a9f1a8d:/lib/python/Screens/Standby.py diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py index a4ba6042..4cda9d19 100644 --- a/lib/python/Screens/Standby.py +++ b/lib/python/Screens/Standby.py @@ -2,8 +2,7 @@ from Screen import Screen from Components.ActionMap import ActionMap from Components.config import config from Components.AVSwitch import AVSwitch -from enigma import eDVBVolumecontrol, eDBoxLCD, eServiceReference -from Components.Sources.Clock import Clock +from enigma import eDVBVolumecontrol inStandby = None @@ -18,7 +17,7 @@ class Standby(Screen): #unmute adc self.leaveMute() #set brightness of lcd - eDBoxLCD.getInstance().setLCDBrightness(config.lcd.bright.value * 20) + config.lcd.bright.apply() #kill me self.close(True) @@ -54,7 +53,7 @@ class Standby(Screen): #set input to vcr scart self.avswitch.setInput("SCART") #set lcd brightness to standby value - eDBoxLCD.getInstance().setLCDBrightness(config.lcd.standby.value * 20) + config.lcd.standby.apply() self.onShow.append(self.__onShow) self.onHide.append(self.__onHide) @@ -72,14 +71,17 @@ class Standby(Screen): class StandbySummary(Screen): skin = """ - + + + config.usage.blinking_display_clock_during_recording,True,CheckSourceBoolean + Blink + """ def __init__(self, session, parent): Screen.__init__(self, session) - self["CurrentTime"] = Clock() from enigma import quitMainloop, iRecordableService from Screens.MessageBox import MessageBox