Commit d0300d92 authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

TreeView should not send two click notifications when bTrack is true.

parent 8b9bf9ff
...@@ -3919,7 +3919,7 @@ TREEVIEW_LButtonDown(TREEVIEW_INFO *infoPtr, LPARAM lParam) ...@@ -3919,7 +3919,7 @@ TREEVIEW_LButtonDown(TREEVIEW_INFO *infoPtr, LPARAM lParam)
} }
} }
if (TREEVIEW_SendSimpleNotify(infoPtr, NM_CLICK)) if (bTrack && TREEVIEW_SendSimpleNotify(infoPtr, NM_CLICK))
goto setfocus; goto setfocus;
/* /*
......
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