mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
don't try to alphablend monochrome bitmaps - fixes the red zone overwrite in opera 9.24
svn path=/trunk/; revision=30687
This commit is contained in:
@@ -1400,7 +1400,10 @@ UserDrawIconEx(
|
||||
IconSize.cy = bmpMask.bmHeight / 2;
|
||||
}
|
||||
|
||||
if (bmpColor.bmBitsPixel == 32)
|
||||
/* NtGdiCreateCompatibleBitmap will create a monochrome bitmap
|
||||
when cxWidth or cyHeight is 0
|
||||
*/
|
||||
if ((bmpColor.bmBitsPixel == 32) && (cxWidth != 0) && (cyHeight != 0))
|
||||
{
|
||||
bAlpha = TRUE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user