diff options
author | Scott <[email protected]> | 2015-10-24 20:56:17 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-10-24 20:56:17 +0100 |
commit | 5453dde3e30ee93fd49a779e4b3ce40d0077e045 (patch) | |
tree | d13d5043970b4331ecfe438b61fc6124355212a9 /win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | |
parent | 0c541998fd82d300293ce9b7ab508d2f25627543 (diff) |
Tidy up some code for the new inline queue view.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index 64b75e793..febfd5b00 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -1220,14 +1220,12 @@ namespace HandBrakeWPF.ViewModels {
this.IsQueueShowingInLine = !this.IsQueueShowingInLine;
this.NotifyOfPropertyChange(() => this.IsQueueShowingInLine);
- this.QueueViewModel.Activate(true);
}
else
{
this.IsQueueShowingInLine = false;
this.NotifyOfPropertyChange(() => this.IsQueueShowingInLine);
- this.QueueViewModel.Activate(false);
Window window = Application.Current.Windows.Cast<Window>().FirstOrDefault(x => x.GetType() == typeof(QueueView));
if (window != null)
{
|