diff options
author | sr55 <[email protected]> | 2008-10-04 13:25:30 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-10-04 13:25:30 +0000 |
commit | 25f19b416417df8ab55580a0e56399a1e88f8fa4 (patch) | |
tree | ddba098dced9faa8b4f6c52878d1f9cdd74b45bc /win/C#/frmQueue.cs | |
parent | 8383924c732d022f1aabe477fd825836feb56320 (diff) |
WinGui:
- Added Copy to Clipboard button back to the Activity Log Window. Now works on Vista.
- Activity window now loads the load file for the last action. e.g If the last action was a scan, it'll load the scan log and if the last action was an encode, it will display the encode log.
That should make it a little bit easier to use / understand.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1807 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r-- | win/C#/frmQueue.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs index 42cf72629..2ba5b2b2c 100644 --- a/win/C#/frmQueue.cs +++ b/win/C#/frmQueue.cs @@ -27,10 +27,12 @@ namespace Handbrake Boolean cancel = false;
Process hbProc = null;
Functions.Queue queue;
+ frmMain mainWindow = null;
- public frmQueue()
+ public frmQueue(frmMain main)
{
InitializeComponent();
+ mainWindow = main;
}
/// <summary>
@@ -99,6 +101,8 @@ namespace Handbrake // Initializes the encode process
private void btn_encode_Click(object sender, EventArgs e)
{
+ mainWindow.setLastAction("encode");
+
if (queue.count() != 0)
{
btn_encode.Enabled = false;
|