diff options
author | sr55 <[email protected]> | 2016-07-15 22:19:47 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-07-15 22:19:47 +0100 |
commit | dc3b72ea781eadbc4284401b898b415c9bae69d5 (patch) | |
tree | 6e1c10f17dc7ce0c8b0f28c65cc3e981df2babff /win | |
parent | 14b65e62a20a29d76b5225d19c7c5e05b157dcaa (diff) |
WinGui: Remove another exception for queue handling and just handle the condition appropriately #211
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs b/win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs index 3e34bf69f..afa167b9c 100644 --- a/win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs +++ b/win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs @@ -505,7 +505,7 @@ namespace HandBrakeWPF.Services.Queue {
if (this.IsProcessing)
{
- throw new Exception("Already Processing the Queue");
+ return;
}
this.clearCompleted = isClearCompleted;
|