From a5e11c672683a315646ba78e74d6c4beb719bfd1 Mon Sep 17 00:00:00 2001 From: Scott Date: Sat, 24 Oct 2015 21:20:16 +0100 Subject: Adding a "When Done" Label and Context Menu to the Main Screen status bar. This should make it more obvious to users that they have a "When done" action turned on, especially when coming back to the app after a period of time. --- win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs') diff --git a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs index 8b4d247c3..8167c1953 100644 --- a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs @@ -71,6 +71,8 @@ namespace HandBrakeWPF.ViewModels this.JobStatus = Resources.QueueViewModel_NoJobsPending; this.SelectedItems = new BindingList(); this.DisplayName = "Queue"; + + this.WhenDoneAction = this.userSettingService.GetUserSetting(UserSettingConstants.WhenCompleteAction); } #endregion @@ -391,8 +393,6 @@ namespace HandBrakeWPF.ViewModels { this.Load(); - this.WhenDoneAction = this.userSettingService.GetUserSetting(UserSettingConstants.WhenCompleteAction); - this.queueProcessor.QueueCompleted += this.queueProcessor_QueueCompleted; this.queueProcessor.QueueChanged += this.QueueManager_QueueChanged; this.queueProcessor.EncodeService.EncodeStatusChanged += this.EncodeService_EncodeStatusChanged; -- cgit v1.2.3