comctl32/listview: Slightly enlarge rectangle when drawing checkbox.

This commit is contained in:
Nikolay Sivov 2009-04-20 07:37:33 -04:00 committed by Alexandre Julliard
parent ffb214a66b
commit 10a936150b
1 changed files with 1 additions and 1 deletions

View File

@ -7209,7 +7209,7 @@ static HIMAGELIST LISTVIEW_CreateCheckBoxIL(const LISTVIEW_INFO *infoPtr)
hbm_orig = SelectObject(hdc, hbm_mask);
FillRect(hdc, &rc, hbr_white);
InflateRect(&rc, -3, -3);
InflateRect(&rc, -2, -2);
FillRect(hdc, &rc, hbr_black);
SelectObject(hdc, hbm_im);