ChangeLog Fix subitem background color in full row select. --- dlls/comctl32/listview.c.X5 Thu Oct 24 02:21:46 2002 +++ dlls/comctl32/listview.c Thu Oct 24 02:30:08 2002 @@ -3441,6 +3441,10 @@ nmlvcd.clrText = comctl32_color.clrBtnText; } } + + /* in full row select, subitems, will just use main item's colors */ + if (nSubItem && uView == LVS_REPORT && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT)) + nmlvcd.clrTextBk = CLR_NONE; /* state icons */ if (infoPtr->himlState && !IsRectEmpty(&rcState)) -- Dimi.