Fix FillRect calls in FILEDLG95_LOOKIN_DrawItem.
This commit is contained in:
parent
83e0bac511
commit
0a5ab16aee
|
@ -2011,13 +2011,13 @@ static LRESULT FILEDLG95_LOOKIN_DrawItem(LPDRAWITEMSTRUCT pDIStruct)
|
||||||
{
|
{
|
||||||
SetTextColor(pDIStruct->hDC,(0x00FFFFFF & ~(crText)));
|
SetTextColor(pDIStruct->hDC,(0x00FFFFFF & ~(crText)));
|
||||||
SetBkColor(pDIStruct->hDC,crHighLight);
|
SetBkColor(pDIStruct->hDC,crHighLight);
|
||||||
FillRect(pDIStruct->hDC,&pDIStruct->rcItem,(HBRUSH)crHighLight);
|
FillRect(pDIStruct->hDC,&pDIStruct->rcItem,GetSysColorBrush(COLOR_HIGHLIGHT));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
SetTextColor(pDIStruct->hDC,crText);
|
SetTextColor(pDIStruct->hDC,crText);
|
||||||
SetBkColor(pDIStruct->hDC,crWin);
|
SetBkColor(pDIStruct->hDC,crWin);
|
||||||
FillRect(pDIStruct->hDC,&pDIStruct->rcItem,(HBRUSH)crWin);
|
FillRect(pDIStruct->hDC,&pDIStruct->rcItem,GetSysColorBrush(COLOR_WINDOW));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Do not indent item if drawing in the edit of the combo */
|
/* Do not indent item if drawing in the edit of the combo */
|
||||||
|
|
Loading…
Reference in New Issue