From 10596a20cb910a6614a96e002eaca83bba528b61 Mon Sep 17 00:00:00 2001 From: Ronny Strutz Date: Thu, 1 Sep 2005 21:14:39 +0000 Subject: [PATCH] add useable configPath(s) --- lib/python/Components/AVSwitch.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py index 8da370e3..b42d74c2 100644 --- a/lib/python/Components/AVSwitch.py +++ b/lib/python/Components/AVSwitch.py @@ -20,12 +20,12 @@ class AVSwitch: def InitAVSwitch(): config.av = ConfigSubsection(); - config.av.colorformat = configElement("1", configBoolean, 1, ("CVBS", "RGB", "S-Video") ); - config.av.aspectratio = configElement("2", configBoolean, 0, ("4:3 Letterbox", "4:3 PanScan", "16:9", "16:9 always") ); - config.av.tvsystem = configElement("3", configBoolean, 0, ("PAL", "PAL + PAL60", "Multi", "NTSC") ); - config.av.wss = configElement("4", configBoolean, 0, ("Enable", "Disable") ); - config.av.defaultac3 = configElement("5", configBoolean, 1, ("Enable", "Disable") ); - config.av.vcrswitch = configElement("6", configBoolean, 0, ("Enable", "Disable") ); + config.av.colorformat = configElement("config.av.colorformat", configBoolean, 1, ("CVBS", "RGB", "S-Video") ); + config.av.aspectratio = configElement("config.av.aspectratio", configBoolean, 0, ("4:3 Letterbox", "4:3 PanScan", "16:9", "16:9 always") ); + config.av.tvsystem = configElement("config.av.tvsystem", configBoolean, 0, ("PAL", "PAL + PAL60", "Multi", "NTSC") ); + config.av.wss = configElement("config.av.wss", configBoolean, 0, ("Enable", "Disable") ); + config.av.defaultac3 = configElement("config.av.defaultac3", configBoolean, 1, ("Enable", "Disable") ); + config.av.vcrswitch = configElement("config.av.vcrswitch", configBoolean, 0, ("Enable", "Disable") ); iAVSwitch = AVSwitch() @@ -45,3 +45,6 @@ def InitAVSwitch(): config.av.wss.addNotifier(setWSS); + config.save() + + -- 2.30.2