summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services
diff options
context:
space:
mode:
authorsr55 <[email protected]>2020-02-23 14:17:29 +0000
committersr55 <[email protected]>2020-02-23 14:17:29 +0000
commit4083aca9d94a7fd58b400b3744a35bfc233cdf5d (patch)
tree8cad746ab47bfe9e7156dd062d3c66d659e2f267 /win/CS/HandBrakeWPF/Services
parentd18c6ff64630c1b741b05d0ae170c92dd05d5870 (diff)
WinGui: Fix an issue with Queue Pause/Resume not working correctly and some unhandled silent exceptions in the libhb wrapper library. Fixes #2647
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r--win/CS/HandBrakeWPF/Services/Queue/QueueService.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs b/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs
index 72bd5d32c..d4893ed53 100644
--- a/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs
+++ b/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs
@@ -446,6 +446,10 @@ namespace HandBrakeWPF.Services.Queue
{
this.ProcessNextJob();
}
+ else
+ {
+ this.IsProcessing = true;
+ }
}
public void Stop()