diff options
author | sr55 <[email protected]> | 2009-03-31 17:30:10 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-03-31 17:30:10 +0000 |
commit | 9091b70897f91be9f058b1369cf8fc9452b7ad5a (patch) | |
tree | e8e56dee30ec8a2c9774b0416718c5bd5217a69b | |
parent | a9b9604524e9348f61dc1cd5f299d9b1703e41cc (diff) |
WinGui:
- Updated Preview Query generation code to handle new -stop-at format.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2287 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/C#/frmMain/QueryGenerator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/frmMain/QueryGenerator.cs b/win/C#/frmMain/QueryGenerator.cs index 05e73b841..6c01286dd 100644 --- a/win/C#/frmMain/QueryGenerator.cs +++ b/win/C#/frmMain/QueryGenerator.cs @@ -75,7 +75,7 @@ namespace Handbrake }
query += " --start-at-preview " + preview;
- query += " --stop-at-duration " + duration + " ";
+ query += " --stop-at duration:" + duration + " ";
// Destination tab
if (mainWindow.text_destination.Text != "")
|