diff options
author | sr55 <[email protected]> | 2007-09-27 16:22:12 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-09-27 16:22:12 +0000 |
commit | 00af0caeb53d4234c2120689e5cb9cc0ec2dffcd (patch) | |
tree | ca89eacd8e3e07556a4418b8104aae29e323d648 /win/C#/Functions | |
parent | e3c9a83c0fcc412d7ce0d41edd0d019e0badadfb (diff) |
WinGui:
- File > Open + Save changed to buttons below the preset list.
- Moved the System Requirements check to Program.cs ( Cleans things up alittle)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@996 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/CLI.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win/C#/Functions/CLI.cs b/win/C#/Functions/CLI.cs index c98d64f47..30c8dd988 100644 --- a/win/C#/Functions/CLI.cs +++ b/win/C#/Functions/CLI.cs @@ -29,7 +29,9 @@ namespace Handbrake.Functions hbProc.StartInfo.RedirectStandardError = stderr;
hbProc.StartInfo.UseShellExecute = useShellExec;
hbProc.StartInfo.CreateNoWindow = noWindow;
+ hbProc.StartInfo.WindowStyle = ProcessWindowStyle.Minimized; // Why doesn't this work??
hbProc.Start();
+
// Set the process Priority
switch (Properties.Settings.Default.processPriority)
@@ -53,6 +55,8 @@ namespace Handbrake.Functions hbProc.PriorityClass = ProcessPriorityClass.BelowNormal;
break;
}
+
+
}
catch
{
|