Commit 30cde9b1 authored by Crestez Leonard's avatar Crestez Leonard Committed by Alexandre Julliard

Fix bug with Treeview_SelectItem reselecting the same item.

parent af056e7e
...@@ -4130,9 +4130,6 @@ TREEVIEW_DoSelectItem(TREEVIEW_INFO *infoPtr, INT action, HTREEITEM newSelect, ...@@ -4130,9 +4130,6 @@ TREEVIEW_DoSelectItem(TREEVIEW_INFO *infoPtr, INT action, HTREEITEM newSelect,
case TVGN_CARET: case TVGN_CARET:
prevSelect = infoPtr->selectedItem; prevSelect = infoPtr->selectedItem;
if (prevSelect == newSelect)
return FALSE;
if (TREEVIEW_SendTreeviewNotify(infoPtr, if (TREEVIEW_SendTreeviewNotify(infoPtr,
TVN_SELCHANGINGW, TVN_SELCHANGINGW,
cause, cause,
......
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