mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Fix keyboard navigation of menus (up/down keys)
Patch by IJM <mailnew2ster AT mail.ru> svn path=/trunk/; revision=44012
This commit is contained in:
@@ -3553,7 +3553,8 @@ MenuTrackMenu(HMENU Menu, UINT Flags, INT x, INT y,
|
||||
}
|
||||
else /* otherwise try to move selection */
|
||||
{
|
||||
MenuMoveSelection(Mt.OwnerWnd, &MenuInfo, ITEM_NEXT);
|
||||
MenuMoveSelection(Mt.OwnerWnd, &MenuInfo,
|
||||
VK_DOWN == Msg.wParam ? ITEM_NEXT : ITEM_PREV);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user