diff options
author | sr55 <[email protected]> | 2019-03-03 16:28:30 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2019-03-03 16:28:30 +0000 |
commit | 3f00ad4e38deca496922f836d31c44f8b630fbf4 (patch) | |
tree | ed2999986978b85c8def6ba1c33878e23439b194 /win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs | |
parent | b419da7700f6e775ff823f78a22d389f1d489d72 (diff) |
WinGui: Remove the legacy queue design. The new design is now always used.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs index f4daf2e23..1baeca994 100644 --- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs @@ -101,7 +101,6 @@ namespace HandBrakeWPF.ViewModels private bool enableQuickSyncEncoding;
private bool enableVceEncoder;
private bool enableNvencEncoder;
- private bool showExperimentalQueue;
private InterfaceLanguage selectedLanguage;
@@ -398,17 +397,6 @@ namespace HandBrakeWPF.ViewModels }
}
- public bool ShowExperimentalQueue
- {
- get => this.showExperimentalQueue;
- set
- {
- if (value == this.showExperimentalQueue) return;
- this.showExperimentalQueue = value;
- this.NotifyOfPropertyChange(() => this.ShowExperimentalQueue);
- }
- }
-
/// <summary>
/// Gets or sets a value indicating whether to show encode status in the tile bar.
/// </summary>
@@ -1407,7 +1395,6 @@ namespace HandBrakeWPF.ViewModels this.WhenDoneAudioFileFullPath = this.userSettingService.GetUserSetting<string>(UserSettingConstants.WhenDoneAudioFile);
this.PlaySoundWhenDone = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.PlaySoundWhenDone);
this.PlaySoundWhenQueueDone = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.PlaySoundWhenQueueDone);
- this.ShowExperimentalQueue = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ShowExperimentalQueue);
this.ShowAddAllToQueue = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ShowAddAllToQueue);
this.ShowAddSelectionToQueue = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ShowAddSelectionToQueue);
@@ -1582,8 +1569,6 @@ namespace HandBrakeWPF.ViewModels /* Experiments */
this.userSettingService.SetUserSetting(UserSettingConstants.ShowQueueInline, this.ShowQueueInline);
- this.userSettingService.SetUserSetting(UserSettingConstants.ShowExperimentalQueue, this.ShowExperimentalQueue);
-
/* Output Files */
this.userSettingService.SetUserSetting(UserSettingConstants.AutoNaming, this.AutomaticallyNameFiles);
|