From: Julian Smart Date: Tue, 21 Mar 2006 11:30:23 +0000 (+0000) Subject: Fix accelerstors with down and left X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/40cc34ec564f7c036724573caba0b4e5643018d8 Fix accelerstors with down and left git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38237 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/uma.cpp b/src/mac/carbon/uma.cpp index 93fc8225ee..2f6077ee1a 100644 --- a/src/mac/carbon/uma.cpp +++ b/src/mac/carbon/uma.cpp @@ -401,7 +401,7 @@ void UMASetMenuItemShortcut( MenuRef menu , MenuItemIndex item , wxAcceleratorEn // 1d and 1e have special meaning to SetItemCmd, so // do not use for these character codes. - if (key != WXK_UP && key != WXK_RIGHT) + if (key != WXK_UP && key != WXK_RIGHT && key != WXK_DOWN && key != WXK_LEFT) SetItemCmd( menu, item , macKey ); SetMenuItemModifiers( menu, item , modifiers ) ;