summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-05-25 15:22:10 +0000
committersr55 <[email protected]>2013-05-25 15:22:10 +0000
commitbe639f834ba19e1853d6c2844386478fb8c9a13c (patch)
treebbf8974965e23da167ded1906788b0fdc5bab43c /win/CS/HandBrake.ApplicationServices
parent3c4dcbe57e88d64eb9ff4e1186f7daf5793e02f2 (diff)
WinGui: Refactor the Presets Picture Size handling to make it a bit clearer what's actually happening.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5512 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs b/win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs
index e670ccb7e..d6a84a617 100644
--- a/win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs
+++ b/win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs
@@ -18,9 +18,11 @@ namespace HandBrake.ApplicationServices.Model
{
[Display(Name = "None")]
None = 0,
- [Display(Name = "Custom")]
+ [Display(Name = "Custom (Keep AR)")]
Custom = 1,
- [Display(Name = "Source Maximum")]
+ [Display(Name = "Current Source Max Size (Keep AR)")]
SourceMaximum = 2,
+ [Display(Name = "No Limit (Keep AR)")]
+ NoLimit = 3,
}
} \ No newline at end of file