summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-05-30 18:39:56 +0000
committersr55 <[email protected]>2013-05-30 18:39:56 +0000
commitaa2152b9f872944320f1275625853f867c97bbb7 (patch)
tree0f11d9ca54efc2346363125a6c7a7ea8a8d53851 /win/CS/HandBrake.ApplicationServices
parentc869b600f798e4b4480a748c255676f58b98d85e (diff)
WinGui: Temp workaround for iPod preset.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5529 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/PresetService.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs
index 5e7d461f5..8f375258c 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs
@@ -313,6 +313,11 @@ namespace HandBrake.ApplicationServices.Services
Task = QueryParserUtility.Parse(presetName[2])
};
+ if (newPreset.Name == "iPod")
+ {
+ newPreset.Task.KeepDisplayAspect = true;
+ }
+
newPreset.Task.AllowedPassthruOptions = new AllowedPassthru(true); // We don't want to override the built-in preset
if (newPreset.Name == "Normal")