If we don't send custom draw messages for subitems, inherit the color

& text attributes of the main item.
oldstable
Dimitrie O. Paun 2003-09-01 23:55:33 +00:00 committed by Alexandre Julliard
parent 48ff7d1e23
commit dad477ce3f
1 changed files with 2 additions and 1 deletions

View File

@ -3565,7 +3565,8 @@ static BOOL LISTVIEW_DrawItem(LISTVIEW_INFO *infoPtr, HDC hdc, INT nItem, INT nS
cdsubitemmode = notify_customdraw(infoPtr, CDDS_PREPAINT, &nmlvcd);
if (nSubItem == 0) infoPtr->cditemmode = cdsubitemmode;
if (cdsubitemmode & CDRF_SKIPDEFAULT) goto postpaint;
prepaint_setup(infoPtr, hdc, &nmlvcd);
if (nSubItem == 0 || (cdmode & CDRF_NOTIFYITEMDRAW))
prepaint_setup(infoPtr, hdc, &nmlvcd);
/* in full row select, subitems, will just use main item's colors */
if (nSubItem && uView == LVS_REPORT && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT))