diff options
author | Joshua Shaffer <[email protected]> | 2019-11-25 22:30:17 -0500 |
---|---|---|
committer | sr55 <[email protected]> | 2019-12-09 17:33:05 +0000 |
commit | d25b84a8c7bf6e15121a048490b1c76d835518d0 (patch) | |
tree | f2400d3059c49e51c0533d9f40815694c3407eca /win/CS | |
parent | 1b71cb5c6240f7f2eea4d99f9c5d964611ad1499 (diff) |
WinGui: Invoke QueueChanged after Import
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Queue/QueueService.cs | 4 |
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 c5fe5e9e3..5599953c1 100644 --- a/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs +++ b/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs @@ -197,6 +197,10 @@ namespace HandBrakeWPF.Services.Queue { this.queue.Add(task); } + if (reloadedQueue.Count > 0) + { + this.InvokeQueueChanged(EventArgs.Empty); + } } } |