]> granicus.if.org Git - handbrake/commitdiff
WinGui:
authorsr55 <sr55.hb@outlook.com>
Sat, 27 Oct 2007 20:21:08 +0000 (20:21 +0000)
committersr55 <sr55.hb@outlook.com>
Sat, 27 Oct 2007 20:21:08 +0000 (20:21 +0000)
- 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

win/C#/Program.cs

index 2bb037bbfd093143369e0d107b28f4d8cbdccbca..aec5ce10b70b68352770a629926600e10ede7c94 100644 (file)
@@ -33,7 +33,7 @@ namespace Handbrake
             {\r
                 // Make sure the screen resolution is not below 1024x768\r
                 System.Windows.Forms.Screen scr = System.Windows.Forms.Screen.PrimaryScreen;\r
-                if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 768))\r
+                if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 720))\r
                 {\r
                     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);\r
                     launch = false;\r