diff options
author | sr55 <[email protected]> | 2013-05-24 17:56:41 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-05-24 17:56:41 +0000 |
commit | 442e1ec4130c9684c4c94ebdf3d5482c071aed02 (patch) | |
tree | a3bdd1e8424bcf12a6eae5c07e7e9e9a3d38e8ee /win | |
parent | 320dba2819ee17523bfba646b2567f860ccb4e0b (diff) |
WinGui: Fix Queue Job display count not refreshing after the window is closed and re-opened.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5507 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs index bf7d46b3d..faa856d6b 100644 --- a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs @@ -370,6 +370,8 @@ namespace HandBrakeWPF.ViewModels this.queueProcessor.QueueChanged += this.QueueManager_QueueChanged;
this.queueProcessor.EncodeService.EncodeStatusChanged += this.EncodeService_EncodeStatusChanged;
+ this.JobsPending = string.Format("{0} jobs pending", this.queueProcessor.Count);
+
base.OnActivate();
}
|