summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Model
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-05-29 20:32:25 +0000
committersr55 <[email protected]>2013-05-29 20:32:25 +0000
commitbf0fe59e97a4fc22b0800191407cdeb758ed20fa (patch)
treee2eccf1f2f5b21270c5c5c29e287276ed71625ae /win/CS/HandBrake.ApplicationServices/Model
parentbffc8a4ab97bcd4630496c62be4720e0c590f1fa (diff)
WinGui: Picture Settings Tab and Preset Behaviours changed to be consistent with the macgui.
- None: Nothing will happen to the W/H/KeepAR when changing preset. Changing Title or source will change the Width to the source width and turn Keep AR on. - Custom Changing preset will change the resolution to be no more than what the Max W and H were set to. Keep AR flag will be honour'd, so if it's turned off, the output AR could be incorrect. Set the W/H to a large number for the equiv of No Limit. - Source Max Same idea as custom, but limited to the resolution of the current source instead of a custom W/H This now means that importing a mac or linux preset provides consistent behaviour. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5525 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs b/win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs
index d6a84a617..9c7d684ca 100644
--- a/win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs
+++ b/win/CS/HandBrake.ApplicationServices/Model/PresetPictureSettingsMode.cs
@@ -18,11 +18,9 @@ namespace HandBrake.ApplicationServices.Model
{
[Display(Name = "None")]
None = 0,
- [Display(Name = "Custom (Keep AR)")]
+ [Display(Name = "Custom")]
Custom = 1,
- [Display(Name = "Current Source Max Size (Keep AR)")]
+ [Display(Name = "Current Source Max Size")]
SourceMaximum = 2,
- [Display(Name = "No Limit (Keep AR)")]
- NoLimit = 3,
}
} \ No newline at end of file