diff options
author | sr55 <[email protected]> | 2008-09-14 20:50:55 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-09-14 20:50:55 +0000 |
commit | 46b030f0d27838a600d07850e9390a9f579f4317 (patch) | |
tree | 956873f3f1ffdd5593e953e5ea9348f807ccde37 /win/C#/Functions/QueryParser.cs | |
parent | b4e47744bb7cbcfcb3b14cc9b2fbffd1919861d7 (diff) |
WinGui:
- Fix: Cropping setting incorrectly set if --crop 0:0:0:0 is used in a preset.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1697 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/QueryParser.cs')
-rw-r--r-- | win/C#/Functions/QueryParser.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/QueryParser.cs b/win/C#/Functions/QueryParser.cs index 347e3f988..01302860a 100644 --- a/win/C#/Functions/QueryParser.cs +++ b/win/C#/Functions/QueryParser.cs @@ -818,7 +818,7 @@ namespace Handbrake.Functions Match detelecine = Regex.Match(input, @"--detelecine");
Match anamorphic = Regex.Match(input, @" -p ");
Match chapterMarkers = Regex.Match(input, @" -m");
- Match crop = Regex.Match(input, @"--crop ([0-9]):([0-9]):([0-9]):([0-9])");
+ Match crop = Regex.Match(input, @"--crop ([0-9]*):([0-9]*):([0-9]*):([0-9]*)");
Match vfr = Regex.Match(input, @" -V");
Match lanamorphic = Regex.Match(input, @" -P");
Match decomb = Regex.Match(input, @" --decomb");
|