mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 12:06:52 +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);
|
newSelection = TREEVIEW_GetNextListItem(infoPtr, prevItem);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case VK_RETURN:
|
||||||
|
TREEVIEW_SendSimpleNotify(infoPtr, NM_RETURN);
|
||||||
|
break;
|
||||||
|
|
||||||
case VK_HOME:
|
case VK_HOME:
|
||||||
newSelection = infoPtr->root->firstChild;
|
newSelection = infoPtr->root->firstChild;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue