diff options
author | sr55 <[email protected]> | 2007-10-27 20:21:08 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-10-27 20:21:08 +0000 |
commit | d9bdc7522b1d363720bd4733359b61b8ca1563a5 (patch) | |
tree | 2ebd441ff628eaff4dd3ac360556850bdbd4b5ab | |
parent | 4ff055d261e76c579c4324f19da3107a523fc317 (diff) |
WinGui:
- Changed minimal resolution from 1024x768 to 1024x720 for 720 HD TV owners.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1041 b64f7644-9d1e-0410-96f1-a4d463321fa5
-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 2bb037bbf..aec5ce10b 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -33,7 +33,7 @@ namespace Handbrake {
// Make sure the screen resolution is not below 1024x768
System.Windows.Forms.Screen scr = System.Windows.Forms.Screen.PrimaryScreen;
- if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 768))
+ 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);
launch = false;
|