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/HandBrake.ApplicationServices/ASUserSettingConstants.cs | 5 ----- win/CS/HandBrake.ApplicationServices/Services/Encode.cs | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) (limited to 'win/CS/HandBrake.ApplicationServices') diff --git a/win/CS/HandBrake.ApplicationServices/ASUserSettingConstants.cs b/win/CS/HandBrake.ApplicationServices/ASUserSettingConstants.cs index f9200958d..bd6a906ba 100644 --- a/win/CS/HandBrake.ApplicationServices/ASUserSettingConstants.cs +++ b/win/CS/HandBrake.ApplicationServices/ASUserSettingConstants.cs @@ -49,11 +49,6 @@ namespace HandBrake.ApplicationServices /// public const string PreventSleep = "PreventSleep"; - /// - /// Show the CLI window - /// - public const string ShowCLI = "ShowCLI"; - /// /// Save Log Directory /// diff --git a/win/CS/HandBrake.ApplicationServices/Services/Encode.cs b/win/CS/HandBrake.ApplicationServices/Services/Encode.cs index 18457af85..0b0c23dbf 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Encode.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Encode.cs @@ -146,7 +146,7 @@ namespace HandBrake.ApplicationServices.Services RedirectStandardOutput = true, RedirectStandardError = enableLogging ? true : false, UseShellExecute = false, - CreateNoWindow = !this.userSettingService.GetUserSetting(ASUserSettingConstants.ShowCLI) ? true : false + CreateNoWindow = true }; this.HbProcess = new Process { StartInfo = cliStart }; -- cgit v1.2.3