summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-10-09 18:13:26 +0000
committersr55 <[email protected]>2012-10-09 18:13:26 +0000
commit7602fc9323c7e2f73fde18363e1abc44f99dd392 (patch)
treea581def0d09d3955670a494b72b1de0795dfd3ce /win/CS/HandBrake.ApplicationServices
parentb8ee41991cb6e93d2cf9222fc13b0fd4277fdf70 (diff)
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
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r--win/CS/HandBrake.ApplicationServices/ASUserSettingConstants.cs5
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/Encode.cs2
2 files changed, 1 insertions, 6 deletions
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
@@ -50,11 +50,6 @@ namespace HandBrake.ApplicationServices
public const string PreventSleep = "PreventSleep";
/// <summary>
- /// Show the CLI window
- /// </summary>
- public const string ShowCLI = "ShowCLI";
-
- /// <summary>
/// Save Log Directory
/// </summary>
public const string SaveLogToCopyDirectory = "SaveLogToCopyDirectory";
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<bool>(ASUserSettingConstants.ShowCLI) ? true : false
+ CreateNoWindow = true
};
this.HbProcess = new Process { StartInfo = cliStart };