diff options
author | Scott <[email protected]> | 2015-12-27 20:15:22 +0000 |
---|---|---|
committer | Scott <[email protected]> | 2015-12-27 20:15:22 +0000 |
commit | bec07640fe587aeb063868f85072f8edb7211c4b (patch) | |
tree | 7bafde3cbd11e22dbb7112aa8d6900dd649790b7 /win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | |
parent | 4e396c75f8e310a90c86d7f540d33261e70cb7c1 (diff) |
WinGui: Couple of fixes for the Edit Queue feature. (Video Tune, Video Bitrate, Video Preset and Framerate) options were not setting correctly.
In addition, if the app recovers the queue, it will by default enable the whole UI now. This is needed particularly with the in-line queue when enabled.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index b9e8da0e4..4e7ef3987 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -1160,6 +1160,10 @@ namespace HandBrakeWPF.ViewModels {
this.ShowSourceSelection = true;
}
+ else
+ {
+ this.HasSource = true; // Enable the GUI. Needed for in-line queue.
+ }
this.SelectedPreset = this.presetService.DefaultPreset;
|