diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-03-29 19:22:52 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-03-29 19:22:52 +0000 |
| commit | 176c7eb91deb951bfeeadf00d600c78df939f6df (patch) | |
| tree | 9b8195bf982a27bfea3af635177d22ccbc3a5431 /lib | |
| parent | ae59d7e22d0cf35aebaba880f528e0d1131b1912 (diff) | |
| download | enigma2-176c7eb91deb951bfeeadf00d600c78df939f6df.tar.gz enigma2-176c7eb91deb951bfeeadf00d600c78df939f6df.zip | |
another change of policy (with correct aspect ratio)
default use letterbox for 16:9 content on 4:3 TVs
default use pillarbox for 4:3 content on 16:9 TVs
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Components/AVSwitch.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py index 664e51f9..39c3abe1 100644 --- a/lib/python/Components/AVSwitch.py +++ b/lib/python/Components/AVSwitch.py @@ -109,9 +109,9 @@ def InitAVSwitch(): "panscan": _("Pan&Scan"), # TRANSLATORS: (aspect ratio policy: display as fullscreen, even if this breaks the aspect) "scale": _("Just Scale")}, - default = "scale") + default = "letterbox") config.av.policy_43 = ConfigSelection(choices={ - # TRANSLATORS: (aspect ratio policy: black bars on top/bottom) in doubt, keep english term. + # TRANSLATORS: (aspect ratio policy: black bars on left/right) in doubt, keep english term. "pillarbox": _("Pillarbox"), # TRANSLATORS: (aspect ratio policy: cropped content on left/right) in doubt, keep english term "panscan": _("Pan&Scan"), @@ -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 = "scale") + default = "pillarbox") 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) |
