diff options
author | sr55 <[email protected]> | 2010-05-23 15:35:57 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-05-23 15:35:57 +0000 |
commit | a28717d0b3d41674934d6e0e24ee70344576fb1e (patch) | |
tree | f82bcc5c983d0de0bf83a4fc65800926a83cbe76 /win/C#/frmQueue.cs | |
parent | f89416ee188a36566bd420d36488d1110a7ca1d5 (diff) |
WinGui:
- Added some new events to the Queue for future refactoring.
- Refactor / Cleanup / Remove more stylecop warnings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3315 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r-- | win/C#/frmQueue.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs index 049cf40dc..93587dba8 100644 --- a/win/C#/frmQueue.cs +++ b/win/C#/frmQueue.cs @@ -125,8 +125,6 @@ namespace Handbrake {
if (doSetQueue) SetQueue();
base.Show();
-
- // Activate();
}
/// <summary>
@@ -136,10 +134,9 @@ namespace Handbrake /// <param name="e">the EventArgs</param>
private void BtnEncodeClick(object sender, EventArgs e)
{
- if (queue.PauseRequested)
+ if (queue.Paused)
{
SetUiEncodeStarted();
- MessageBox.Show("Encoding restarted", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
if (!queue.IsEncoding)
|