diff options
author | Scott <[email protected]> | 2015-10-24 21:20:16 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-10-24 21:20:16 +0100 |
commit | a5e11c672683a315646ba78e74d6c4beb719bfd1 (patch) | |
tree | 4ceebf66ac6b431a3c6108dfaccf2304ed85b70d /win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs | |
parent | 5453dde3e30ee93fd49a779e4b3ce40d0077e045 (diff) |
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.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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<QueueTask>();
this.DisplayName = "Queue";
+
+ this.WhenDoneAction = this.userSettingService.GetUserSetting<string>(UserSettingConstants.WhenCompleteAction);
}
#endregion
@@ -391,8 +393,6 @@ namespace HandBrakeWPF.ViewModels {
this.Load();
- this.WhenDoneAction = this.userSettingService.GetUserSetting<string>(UserSettingConstants.WhenCompleteAction);
-
this.queueProcessor.QueueCompleted += this.queueProcessor_QueueCompleted;
this.queueProcessor.QueueChanged += this.QueueManager_QueueChanged;
this.queueProcessor.EncodeService.EncodeStatusChanged += this.EncodeService_EncodeStatusChanged;
|