summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services
diff options
context:
space:
mode:
authorJoshua Shaffer <[email protected]>2019-11-25 22:30:17 -0500
committerScott <[email protected]>2019-11-28 01:53:32 +0000
commitad44a78effae7db2db35ee799753b6ae5368dcde (patch)
treee80cd6aa49f71a5a7afd0e68c0471b8aedcbdaa6 /win/CS/HandBrakeWPF/Services
parent196afc4ce0042f20612535c399a5ddc450de26f4 (diff)
WinGui: Invoke QueueChanged after Import
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 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);
+ }
}
}