]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix accelerstors with down and left
authorJulian Smart <julian@anthemion.co.uk>
Tue, 21 Mar 2006 11:30:23 +0000 (11:30 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 21 Mar 2006 11:30:23 +0000 (11:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38237 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/uma.cpp

index 93fc8225ee7229902a5447c1bdcea59888c05a87..2f6077ee1a14eca024e9ce5dfb972ddeabe0a7a1 100644 (file)
@@ -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 ) ;