treeview click notification

Mike Hearn m.hearn at signal.qinetiq.com
Wed Mar 26 09:00:26 CST 2003


ChangeLog:
TreeView should not send two click notifications when bTrack is true

Alexandre - I noticed my last treeview patch wasn't applied, I have been
diffing against old copies rather than CVS.... is it that my patches are
no longer applying cleanly? If so, then I'll resubmit when I have CVS
access again. If there was a problem with the patch, could you please
say what it was so I can fix it now, while I have time?

Finally, this patch fixes the last remaining problems with the treeview
in the NSIS installer, fixing bug 1298

thanks -mike
-------------- next part --------------
--- wine-cvs-old/dlls/comctl32/treeview.c	2003-03-19 11:30:55.000000000 +0000
+++ wine/dlls/comctl32/treeview.c	2003-03-26 14:54:56.000000000 +0000
@@ -3922,7 +3920,7 @@
         }
     }
 
-    if (TREEVIEW_SendSimpleNotify(infoPtr, NM_CLICK))
+    if (bTrack && TREEVIEW_SendSimpleNotify(infoPtr, NM_CLICK))
         goto setfocus;
 
     /*


More information about the wine-patches mailing list