mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +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:
parent
290a30a5cb
commit
53c5d2f826
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue