diff options
author | sr55 <[email protected]> | 2009-09-07 09:01:22 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-09-07 09:01:22 +0000 |
commit | ca462aa5deeba2b4ffd1b114074d61620cd07e98 (patch) | |
tree | 121b884632790adde9fd35531ae7cb9271076a28 /win/C#/frmMain.cs | |
parent | 74302fd6044b633bcd683bb8e6a0faa39d113732 (diff) |
WinGui:
- Some fixes to the ActivityWindow. CLI query should always be displayed now.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2807 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 3935b873f..a668cc69e 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -718,10 +718,12 @@ namespace Handbrake queueWindow.Show(false);
setEncodeStarted(); // Encode is running, so setup the GUI appropriately
- if (ActivityWindow != null)
- ActivityWindow.setLogView(false);
encodeQueue.StartEncodeQueue(); // Start The Queue Encoding Process
lastAction = "encode"; // Set the last action to encode - Used for activity window.
+
+ if (ActivityWindow != null)
+ ActivityWindow.SetLogView(false);
+
}
this.Focus();
}
@@ -1412,7 +1414,7 @@ namespace Handbrake try
{
if (ActivityWindow != null)
- ActivityWindow.setLogView(true);
+ ActivityWindow.SetLogView(true);
isScanning = true;
ThreadPool.QueueUserWorkItem(scanProcess);
}
|