summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-09-26 21:34:05 +0100
committersr55 <[email protected]>2018-09-26 21:34:05 +0100
commit5438c43675f518e52b70db6804ced1262488a88e (patch)
treef709e647a75d572e116c8f75f7303e67c8166797
parentcf99446d16a53a702a47b082dff7cffc5ce820a3 (diff)
WinGui: Trigger a status tab update when a job finishes.
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs
index 9ff7e6b40..dbe93bc75 100644
--- a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs
@@ -807,6 +807,8 @@ namespace HandBrakeWPF.ViewModels
this.JobStatus = Resources.QueueViewModel_QueueCompleted;
this.JobsPending = string.Format(Resources.QueueViewModel_JobsPending, this.queueProcessor.Count);
this.IsQueueRunning = false;
+ this.NotifyOfPropertyChange(() => this.SelectedTask);
+ this.NotifyOfPropertyChange(() => this.StatsVisible);
}
/// <summary>