mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
Fix subitem background color in full row select.
This commit is contained in:
parent
b14c82a8b8
commit
ab97b86902
1 changed files with 4 additions and 0 deletions
|
@ -3441,6 +3441,10 @@ static BOOL LISTVIEW_DrawItem(LISTVIEW_INFO *infoPtr, HDC hdc, INT nItem, INT nS
|
|||
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))
|
||||
|
|
Loading…
Reference in a new issue