aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-03-29 12:29:42 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-03-29 12:29:42 +0000
commitb4d8c89302c67237b8a121a8f262e9db0022a9e7 (patch)
treefab165849b839ab167087911e91f9ab72e76937f /lib
parent788631e9d94a53a43fa127dcc2de4ce8fe05dca2 (diff)
downloadenigma2-b4d8c89302c67237b8a121a8f262e9db0022a9e7.tar.gz
enigma2-b4d8c89302c67237b8a121a8f262e9db0022a9e7.zip
just scale by default
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Components/AVSwitch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py
index 1b274187..664e51f9 100644
--- a/lib/python/Components/AVSwitch.py
+++ b/lib/python/Components/AVSwitch.py
@@ -109,7 +109,7 @@ def InitAVSwitch():
"panscan": _("Pan&Scan"),
# TRANSLATORS: (aspect ratio policy: display as fullscreen, even if this breaks the aspect)
"scale": _("Just Scale")},
- default = "letterbox")
+ default = "scale")
config.av.policy_43 = ConfigSelection(choices={
# TRANSLATORS: (aspect ratio policy: black bars on top/bottom) in doubt, keep english term.
"pillarbox": _("Pillarbox"),
@@ -119,7 +119,7 @@ def InitAVSwitch():
"nonlinear": _("Nonlinear"),
# TRANSLATORS: (aspect ratio policy: display as fullscreen, even if this breaks the aspect)
"scale": _("Just Scale")},
- default = "panscan")
+ default = "scale")
config.av.tvsystem = ConfigSelection(choices = {"pal": _("PAL"), "ntsc": _("NTSC"), "multinorm": _("multinorm")}, default="pal")
config.av.wss = ConfigEnableDisable(default = True)
config.av.defaultac3 = ConfigYesNo(default = False)