diff --git a/dll/win32/comctl32/toolbar.c b/dll/win32/comctl32/toolbar.c index c43dc0c980..8c2106c07b 100644 --- a/dll/win32/comctl32/toolbar.c +++ b/dll/win32/comctl32/toolbar.c @@ -804,7 +804,9 @@ TOOLBAR_DrawImage(const TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr, INT left, I ImageList_GetImageInfo(himl, index, &info); GetObjectW(info.hbmImage, sizeof(bm), &bm); - if (bm.bmBitsPixel == 32) +TRACE("bmWidth/bmHeight is '%d/%d'.\n", bm.bmWidth, bm.bmHeight); + + if ((bm.bmBitsPixel == 32) && (bm.bmWidth == 96)) { draw_desaturated = TRUE; }