Hi Christoph !
Are you sure that before committing this fix in Wine code, you: 1- made a
patch to wine's code, 2- sent it to them, and 3- checked that they merged
too in their code base? Because otherwise your fix here might be lost in the
next Wine code sync...
Cheers,
Hermès.
-----Message d'origine-----
Author: cwittich
Date: Sun May 11 05:04:56 2014
New Revision: 63225
URL:
http://svn.reactos.org/svn/reactos?rev=63225&view=rev
Log:
[comctl32]
Notify the parent on a return key press.
fixes return key in device manager
Modified:
trunk/reactos/dll/win32/comctl32/treeview.c
Modified: trunk/reactos/dll/win32/comctl32/treeview.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/comctl32/treeview
.c?rev=63225&r1=63224&r2=63225&view=diff
============================================================================
==
--- trunk/reactos/dll/win32/comctl32/treeview.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/comctl32/treeview.c [iso-8859-1] Sun May 11
05:04:56 2014
@@ -5242,6 +5242,10 @@
newSelection = TREEVIEW_GetNextListItem(infoPtr, prevItem);
break;
+ case VK_RETURN:
+ TREEVIEW_SendSimpleNotify(infoPtr, NM_RETURN);
+ break;
+
case VK_HOME:
newSelection = infoPtr->root->firstChild;
break;