From 178a3d732f0e3fd0d510b179bcca668a7356616f Mon Sep 17 00:00:00 2001 From: RKrom Date: Tue, 18 Dec 2012 15:16:50 +0000 Subject: [PATCH] Fixed look of error message when registration of hotkeys failed. git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2393 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- Greenshot/Forms/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Greenshot/Forms/MainForm.cs b/Greenshot/Forms/MainForm.cs index 1127e8ffc..338da79e3 100644 --- a/Greenshot/Forms/MainForm.cs +++ b/Greenshot/Forms/MainForm.cs @@ -551,7 +551,7 @@ namespace Greenshot { } if (!success) { - MessageBox.Show(Language.GetFormattedString(LangKey.warning_hotkeys, failedKeys.ToString()),Language.GetString(LangKey.warning)); + MessageBox.Show(MainForm.Instance, Language.GetFormattedString(LangKey.warning_hotkeys, failedKeys.ToString()),Language.GetString(LangKey.warning), MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } #endregion