summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-04-12 19:16:18 +0000
committersr55 <[email protected]>2013-04-12 19:16:18 +0000
commitee69423b2777934d1fc19b41cd428c9e28f1b65f (patch)
treefd5256882c00ab892b5c7fa7e2bc3d27f5cad2da /win
parenta455dfec33439b42dfd89e8a7fe303abd9277393 (diff)
WinGui: Fix Modulus option in preset import.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5396 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Factories/PlistPresetFactory.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Factories/PlistPresetFactory.cs b/win/CS/HandBrake.ApplicationServices/Factories/PlistPresetFactory.cs
index e47a76115..9179f3887 100644
--- a/win/CS/HandBrake.ApplicationServices/Factories/PlistPresetFactory.cs
+++ b/win/CS/HandBrake.ApplicationServices/Factories/PlistPresetFactory.cs
@@ -138,6 +138,9 @@ namespace HandBrake.ApplicationServices.Factories
case "PicturePAR":
preset.Task.Anamorphic = (Anamorphic)kvp.Value;
break;
+ case "PictureModulus":
+ preset.Task.Modulus = kvp.Value;
+ break;
// Filters
case "PictureDeblock":