diff options
author | sr55 <[email protected]> | 2013-04-12 19:16:18 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-04-12 19:16:18 +0000 |
commit | ee69423b2777934d1fc19b41cd428c9e28f1b65f (patch) | |
tree | fd5256882c00ab892b5c7fa7e2bc3d27f5cad2da /win | |
parent | a455dfec33439b42dfd89e8a7fe303abd9277393 (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.cs | 3 |
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":
|