diff options
author | sr55 <[email protected]> | 2013-09-01 15:01:23 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-09-01 15:01:23 +0000 |
commit | 1901457e8b1d66abc1e321d887968e1419cb489e (patch) | |
tree | 8953c504b303cfd6a3afbaaff0039987993f6940 /win/CS/HandBrake.ApplicationServices | |
parent | 8ddee7c254428171233bead5b9741ebe1ba18940 (diff) |
WinGui: Fix an issue with cropping param not being send to the CLI in AutoMode. This is an issue where scan previewer count >10.
Fixed an Auto-Name issue for DVD drives.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5761 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs b/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs index f98fbbfc8..af0e086f9 100644 --- a/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs +++ b/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs @@ -266,10 +266,10 @@ namespace HandBrake.ApplicationServices.Utilities if (task.Height.HasValue && task.Height != 0) query += string.Format(" -l {0}", task.Height);
}
- if (task.HasCropping)
- {
+ //if (task.HasCropping)
+ //{
query += string.Format(" --crop {0}:{1}:{2}:{3}", task.Cropping.Top, task.Cropping.Bottom, task.Cropping.Left, task.Cropping.Right);
- }
+ //}
switch (task.Anamorphic)
{
|