just scale by default
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Sat, 29 Mar 2008 12:29:42 +0000 (12:29 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Sat, 29 Mar 2008 12:29:42 +0000 (12:29 +0000)
lib/python/Components/AVSwitch.py

index 1b27418734b340c17e40172174544b863a1340d3..664e51f93fa0412b9b9ad0dcfee09ec2f68a72e0 100644 (file)
@@ -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)