diff options
author | sr55 <[email protected]> | 2008-11-12 15:57:39 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-11-12 15:57:39 +0000 |
commit | d99095dd075535212881be4a1d7544e9aca91b5b (patch) | |
tree | 34a8961821575de3493764de08099daf8aeb8909 /win/C#/frmMain.cs | |
parent | 507d870e33c46a7186c647a6d53288123fc60c74 (diff) |
WinGui:
- Adds the CLI query to the top of every log file generated after an encode finishes. Note: CLI query will only display in the activity window after the CLI has exited. This can be sorted later.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1917 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 37f4160a6..94d826494 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -1890,7 +1890,8 @@ namespace Handbrake }
// After the encode is done, we may want to shutdown, suspend etc.
- cliObj.copyLog((string)state);
+ cliObj.addCLIQueryToLog((string)state);
+ cliObj.copyLog((string)state); // Make a copy of the log in the users desired location if necessary
cliObj.afterEncodeAction();
}
}
|