From 57f06f772c484522c9cbde27e50d988aa26d13bb Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 27 Oct 2007 20:21:08 +0000 Subject: [PATCH] WinGui: - Changed minimal resolution from 1024x768 to 1024x720 for 720 HD TV owners. git-svn-id: svn://localhost/HandBrake/trunk@1041 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win/C#/Program.cs b/win/C#/Program.cs index 2bb037bb..aec5ce10 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; -- 2.11.0