Commit 4cc503d1 authored by Christoph von Wittich's avatar Christoph von Wittich Committed by Alexandre Julliard

comctl32/treeview: Notify the parent on a return key press.

parent 74c5e38b
......@@ -5259,6 +5259,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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment