aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-05-05 18:58:00 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-05-05 18:58:00 +0000
commit3822c18b3ab800bee6e1ab79aba501c042d5f95f (patch)
treea6c897111e5ad1d3a46d49ec34ae17e864e2fa2f /lib
parent185319be599e9f42cd695da14c01499fc79f68d5 (diff)
downloadenigma2-3822c18b3ab800bee6e1ab79aba501c042d5f95f.tar.gz
enigma2-3822c18b3ab800bee6e1ab79aba501c042d5f95f.zip
comment out ac3 default option until it is implemented
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Components/AVSwitch.py2
1 files changed, 1 insertions, 1 deletions
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()