[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:
Christoph von Wittich 2014-05-11 05:04:56 +00:00
parent 94f60baa09
commit c93f8e51f0

View file

@ -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;