aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/setup.xml2
-rw-r--r--lib/python/Components/AVSwitch.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/data/setup.xml b/data/setup.xml
index f4fea25d..49a43b4f 100644
--- a/data/setup.xml
+++ b/data/setup.xml
@@ -12,7 +12,7 @@
<item text="Aspect Ratio">config.av.aspectratio</item>
<item text="TV System">config.av.tvsystem</item>
<item text="WSS on 4:3">config.av.wss</item>
- <item text="AC3 default">config.av.defaultac3</item>
+ <!--item text="AC3 default">config.av.defaultac3</item-->
<item text="VCR Switch">config.av.vcrswitch</item>
</setup>
<setup key="usage" title="Usage settings">
diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py
index 19fccf54..525ecb96 100644
--- a/lib/python/Components/AVSwitch.py
+++ b/lib/python/Components/AVSwitch.py
@@ -84,7 +84,7 @@ def InitAVSwitch():
#config.av.tvsystem = configElement("config.av.tvsystem", configSelection, 0, ("PAL", "PAL + PAL60", "Multi", "NTSC") )
config.av.tvsystem = configElement("config.av.tvsystem", configSelection, 0, (("pal", _("PAL")), ("ntsc", _("NTSC"))) )
config.av.wss = configElement("config.av.wss", configSelection, 0, (("off", _("Off")), ("on", _("On"))) )
- config.av.defaultac3 = configElement("config.av.defaultac3", configSelection, 1, (("enable", _("Enable")), ("disable", _("Disable"))))
+# config.av.defaultac3 = configElement("config.av.defaultac3", configSelection, 1, (("enable", _("Enable")), ("disable", _("Disable"))))
config.av.vcrswitch = configElement("config.av.vcrswitch", configSelection, 1, (("enable", _("Enable")), ("disable", _("Disable"))))
iAVSwitch = AVSwitch()