From 02dd9ba8b9f02bfda875cf1efb953cf41acd60c5 Mon Sep 17 00:00:00 2001 From: RKrom Date: Wed, 16 May 2012 05:17:00 +0000 Subject: [PATCH] Fixed Bugs #3526974 & #3527020, as the File menu wasn't generated at startup the hotkeys were missing. git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1854 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- Greenshot/Forms/ImageEditorForm.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Greenshot/Forms/ImageEditorForm.cs b/Greenshot/Forms/ImageEditorForm.cs index dacde87df..ab14f2e15 100644 --- a/Greenshot/Forms/ImageEditorForm.cs +++ b/Greenshot/Forms/ImageEditorForm.cs @@ -168,6 +168,10 @@ namespace Greenshot { LOG.Warn("Exception: ", addingException); } } + + // Create the file menu, normally this is done when opening but if we don't do it now the short-cut keys are missing. + // See Bugs #3526974 & #3527020 + FileMenuDropDownOpening(null, null); } void AddDestinationButton(IDestination toolstripDestination) {