diff options
author | sr55 <[email protected]> | 2009-09-28 17:01:27 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-09-28 17:01:27 +0000 |
commit | fc8e28456ff462c18379853c9c55331208549a4d (patch) | |
tree | cfb5284187d941136d16bf2726efee00ee53e3a3 /win | |
parent | fdb989715681a5fb868477e6956c6219b73f4d1f (diff) |
WinGui:
- MessageBox message fix
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2845 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/C#/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Program.cs b/win/C#/Program.cs index 71f1385f2..282f9f528 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -21,7 +21,7 @@ namespace Handbrake {
Screen scr = Screen.PrimaryScreen;
if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 620))
- MessageBox.Show("Your system does not meet the minimum requirements for HandBrake. \n" + "Your screen is running at: " + scr.Bounds.Width + "x" + scr.Bounds.Height + " \nScreen resolution is too Low. Must be 1024x720 or greater", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ MessageBox.Show("Your system does not meet the minimum requirements for HandBrake. \n" + "Your screen is running at: " + scr.Bounds.Width + "x" + scr.Bounds.Height + " \nScreen resolution is too Low. Must be 1024x620 or greater", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
else
{
string logDir = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"HandBrake\logs");
|