X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/a60706d6e68355f37a404872e5f91f4c827bdb2a..01f6932815a6a21ab46bb420be093685378b43dd:/lib/python/Components/AVSwitch.py diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py index d74ad258..b36dc4a2 100644 --- a/lib/python/Components/AVSwitch.py +++ b/lib/python/Components/AVSwitch.py @@ -55,18 +55,18 @@ def InitAVSwitch(): iAVSwitch = AVSwitch() def setColorFormat(configElement): - iAVSwitch.setColorFormat(configElement.value); + iAVSwitch.setColorFormat(configElement.value) def setAspectRatio(configElement): - iAVSwitch.setAspectRatio(configElement.value); + iAVSwitch.setAspectRatio(configElement.value) def setSystem(configElement): - iAVSwitch.setSystem(configElement.value); + iAVSwitch.setSystem(configElement.value) def setWSS(configElement): - iAVSwitch.setWSS(configElement.value); + iAVSwitch.setWSS(configElement.value) # this will call the "setup-val" initial - config.av.colorformat.addNotifier(setColorFormat); - config.av.aspectratio.addNotifier(setAspectRatio); - config.av.tvsystem.addNotifier(setSystem); - config.av.wss.addNotifier(setWSS); + config.av.colorformat.addNotifier(setColorFormat) + config.av.aspectratio.addNotifier(setAspectRatio) + config.av.tvsystem.addNotifier(setSystem) + config.av.wss.addNotifier(setWSS) iAVSwitch.setInput("ENCODER") # init on startup \ No newline at end of file