summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Services
diff options
context:
space:
mode:
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>