mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 07:36:21 +00:00
[comctl32]
Notify the parent on a return key press. fixes return key in device manager svn path=/trunk/; revision=63225
This commit is contained in:
parent
94f60baa09
commit
c93f8e51f0
1 changed files with 4 additions and 0 deletions
|
@ -5242,6 +5242,10 @@ TREEVIEW_KeyDown(TREEVIEW_INFO *infoPtr, WPARAM wParam)
|
|||
newSelection = TREEVIEW_GetNextListItem(infoPtr, prevItem);
|
||||
break;
|
||||
|
||||
case VK_RETURN:
|
||||
TREEVIEW_SendSimpleNotify(infoPtr, NM_RETURN);
|
||||
break;
|
||||
|
||||
case VK_HOME:
|
||||
newSelection = infoPtr->root->firstChild;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue