From 7602fc9323c7e2f73fde18363e1abc44f99dd392 Mon Sep 17 00:00:00 2001 From: sr55 Date: Tue, 9 Oct 2012 18:13:26 +0000 Subject: WinGui: Remove old ShowCLI setting. There isn't much reason to have this anymore. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5010 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs | 25 ---------------------- win/CS/HandBrakeWPF/Views/OptionsView.xaml | 1 - 2 files changed, 26 deletions(-) (limited to 'win/CS/HandBrakeWPF') diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs index 1bd773bc0..343d6be7c 100644 --- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs @@ -279,11 +279,6 @@ namespace HandBrakeWPF.ViewModels /// private string sendFileToPath; - /// - /// The show cli window. - /// - private bool showCliWindow; - /// /// The vlc path. /// @@ -1298,23 +1293,6 @@ namespace HandBrakeWPF.ViewModels } } - /// - /// Gets or sets a value indicating whether ShowCliWindow. - /// - public bool ShowCliWindow - { - get - { - return this.showCliWindow; - } - - set - { - this.showCliWindow = value; - this.NotifyOfPropertyChange("ShowCliWindow"); - } - } - /// /// Gets or sets a value indicating whether ClearQueueOnEncodeCompleted. /// @@ -1626,7 +1604,6 @@ namespace HandBrakeWPF.ViewModels // Priority level for encodes this.priorityLevelOptions.Clear(); - this.priorityLevelOptions.Add("Realtime"); this.priorityLevelOptions.Add("High"); this.priorityLevelOptions.Add("Above Normal"); this.priorityLevelOptions.Add("Normal"); @@ -1660,7 +1637,6 @@ namespace HandBrakeWPF.ViewModels this.DisplayStatusMessagesTrayIcon = this.userSettingService.GetUserSetting(UserSettingConstants.TrayIconAlerts); this.MinimiseToTray = this.userSettingService.GetUserSetting(UserSettingConstants.MainWindowMinimize); this.DisablePresetUpdateCheckNotification = this.userSettingService.GetUserSetting(UserSettingConstants.PresetNotification); - this.ShowCliWindow = userSettingService.GetUserSetting(ASUserSettingConstants.ShowCLI); this.ClearQueueOnEncodeCompleted = userSettingService.GetUserSetting(ASUserSettingConstants.ClearCompletedFromQueue); // Set the preview count @@ -1894,7 +1870,6 @@ namespace HandBrakeWPF.ViewModels userSettingService.SetUserSetting(UserSettingConstants.MainWindowMinimize, this.MinimiseToTray); userSettingService.SetUserSetting(UserSettingConstants.TrayIconAlerts, this.DisplayStatusMessagesTrayIcon); userSettingService.SetUserSetting(UserSettingConstants.PresetNotification, this.DisablePresetUpdateCheckNotification); - userSettingService.SetUserSetting(ASUserSettingConstants.ShowCLI, this.ShowCliWindow); userSettingService.SetUserSetting(ASUserSettingConstants.ClearCompletedFromQueue, this.ClearQueueOnEncodeCompleted); userSettingService.SetUserSetting(ASUserSettingConstants.PreviewScanCount, this.SelectedPreviewCount); userSettingService.SetUserSetting(ASUserSettingConstants.X264Step, double.Parse(this.SelectedGranulairty, CultureInfo.InvariantCulture)); diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml index a2be6c113..88f2fae61 100644 --- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml +++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml @@ -262,7 +262,6 @@ - -- cgit v1.2.3