mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
comctl32: Fix a regression.
This commit is contained in:
parent
6c4267a1cf
commit
83149b1d2c
@ -2124,17 +2124,17 @@ ImageList_Remove (HIMAGELIST himl, INT i)
|
||||
|
||||
/* copy all images and masks prior to the "removed" image */
|
||||
if (i > 0) {
|
||||
POINT pt;
|
||||
SIZE sz;
|
||||
|
||||
TRACE("Pre image copy: Copy %d images\n", i);
|
||||
|
||||
SelectObject (hdcBmp, hbmNewImage);
|
||||
imagelist_point_from_index(himl, i, &pt);
|
||||
BitBlt (hdcBmp, 0, 0, pt.x, pt.y, himl->hdcImage, 0, 0, SRCCOPY);
|
||||
imagelist_get_bitmap_size( himl, i, himl->cy, &sz );
|
||||
BitBlt (hdcBmp, 0, 0, sz.cx, sz.cy, himl->hdcImage, 0, 0, SRCCOPY);
|
||||
|
||||
if (himl->hbmMask) {
|
||||
SelectObject (hdcBmp, hbmNewMask);
|
||||
BitBlt (hdcBmp, 0, 0, pt.x, pt.y, himl->hdcMask, 0, 0, SRCCOPY);
|
||||
BitBlt (hdcBmp, 0, 0, sz.cx, sz.cy, himl->hdcMask, 0, 0, SRCCOPY);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user