From fc8e28456ff462c18379853c9c55331208549a4d Mon Sep 17 00:00:00 2001 From: sr55 Date: Mon, 28 Sep 2009 17:01:27 +0000 Subject: [PATCH] WinGui: - MessageBox message fix git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2845 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 71f1385f2..282f9f528 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -21,7 +21,7 @@ namespace Handbrake { Screen scr = Screen.PrimaryScreen; if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 620)) - MessageBox.Show("Your system does not meet the minimum requirements for HandBrake. \n" + "Your screen is running at: " + scr.Bounds.Width + "x" + scr.Bounds.Height + " \nScreen resolution is too Low. Must be 1024x720 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 + "x" + scr.Bounds.Height + " \nScreen resolution is too Low. Must be 1024x620 or greater", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); else { string logDir = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"HandBrake\logs"); -- 2.40.0