diff options
author | sr55 <[email protected]> | 2007-11-13 17:44:33 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-11-13 17:44:33 +0000 |
commit | addd8819bde47cfa732e33333e989e41f9206a1d (patch) | |
tree | 0e86d580d233808a50830eaaac9305d265f05142 /win/C#/Program.cs | |
parent | 089f31b2c2e04c0dcbad5a4763d34d3c98c3241a (diff) |
WinGui:
- User default settings now uses the new Preset Parser function. This cuts down on a significant amount of code.
- Added system resolution to the resolution checker message box. For future debugging.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1056 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Program.cs')
-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 aec5ce10b..b5af0d74c 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -35,7 +35,7 @@ namespace Handbrake System.Windows.Forms.Screen scr = System.Windows.Forms.Screen.PrimaryScreen;
if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 720))
{
- MessageBox.Show("Your system does not meet the minimum requirements for HandBrake. \n Screen resolution is too Low. Must be 1024x768 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.ToString() + "x" + scr.Bounds.Height.ToString() + " \nScreen resolution is too Low. Must be 1024x720 or greater", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
launch = false;
}
|