comctl32: LVN_ITEMCHANGED notification should be sent for each item when group selected for ~LVS_OWNERDATA.
This commit is contained in:
parent
efbb4ebf3e
commit
b7f0dd64da
|
@ -3170,8 +3170,10 @@ static void LISTVIEW_SetGroupSelection(LISTVIEW_INFO *infoPtr, INT nItem)
|
|||
iterator_destroy(&i);
|
||||
}
|
||||
|
||||
/* disable per item notifications on LVS_OWNERDATA style
|
||||
FIXME: single LVN_ODSTATECHANGED should be used */
|
||||
bOldChange = infoPtr->bDoChangeNotify;
|
||||
infoPtr->bDoChangeNotify = FALSE;
|
||||
if (infoPtr->dwStyle & LVS_OWNERDATA) infoPtr->bDoChangeNotify = FALSE;
|
||||
|
||||
LISTVIEW_DeselectAllSkipItems(infoPtr, selection);
|
||||
|
||||
|
|
Loading…
Reference in New Issue