summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Services
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-08-21 16:07:48 +0000
committersr55 <[email protected]>2013-08-21 16:07:48 +0000
commitedc9bf98907f9f794443facc7ce9072ee27af08c (patch)
treec2e44b43d14e8f70b87e826afa535b537f65beaf /win/CS/HandBrake.ApplicationServices/Services
parent58a7211154567065ce0a2845c573177334b6b8e2 (diff)
WinGui: Initial work around around a when done countdown.
When a queue finishes it will now popup a window giving the user 60 seconds to cancel the when done operation. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5728 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs b/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs
index 92558f6cc..d80a485ec 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs
@@ -546,6 +546,8 @@ namespace HandBrake.ApplicationServices.Services
/// </param>
private void InvokeQueuePaused(EventArgs e)
{
+ this.IsProcessing = false;
+
EventHandler handler = this.QueuePaused;
if (handler != null)
{
@@ -566,6 +568,8 @@ namespace HandBrake.ApplicationServices.Services
{
handler(this, e);
}
+
+ this.IsProcessing = false;
}
/// <summary>