comctl32: Trying to blend an image without a mask causes problem, especially if the background is white.
This commit is contained in:
parent
6cc0b4e88e
commit
df0d77b007
|
@ -1192,8 +1192,13 @@ ImageList_DrawIndirect (IMAGELISTDRAWPARAMS *pimldp)
|
|||
|
||||
hOldBrush = SelectObject (hImageDC, CreateSolidBrush (colour));
|
||||
PatBlt( hImageDC, 0, 0, cx, cy, PATCOPY );
|
||||
BitBlt( hImageDC, 0, 0, cx, cy, hMaskListDC, pt.x, pt.y, SRCAND );
|
||||
BitBlt( hImageDC, 0, 0, cx, cy, hImageListDC, pt.x, pt.y, SRCPAINT );
|
||||
if (himl->hbmMask)
|
||||
{
|
||||
BitBlt( hImageDC, 0, 0, cx, cy, hMaskListDC, pt.x, pt.y, SRCAND );
|
||||
BitBlt( hImageDC, 0, 0, cx, cy, hImageListDC, pt.x, pt.y, SRCPAINT );
|
||||
}
|
||||
else
|
||||
BitBlt( hImageDC, 0, 0, cx, cy, hImageListDC, pt.x, pt.y, SRCCOPY);
|
||||
DeleteObject (SelectObject (hImageDC, hOldBrush));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue