From: sr55 Date: Sat, 27 Oct 2007 20:21:08 +0000 (+0000) Subject: WinGui: X-Git-Tag: 0.9.2~262 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d9bdc7522b1d363720bd4733359b61b8ca1563a5;p=handbrake 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 --- 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;