mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[WIN32K]
- Dismiss alpha channel when creating a solid brush. Finally fixes VLC icons and numerous winetests. svn path=/trunk/; revision=50945
This commit is contained in:
parent
788c6760f7
commit
1a7f618d3b
1 changed files with 1 additions and 1 deletions
|
@ -394,7 +394,7 @@ IntGdiCreateSolidBrush(
|
|||
|
||||
pbrush->flAttrs |= GDIBRUSH_IS_SOLID;
|
||||
|
||||
pbrush->BrushAttr.lbColor = Color;
|
||||
pbrush->BrushAttr.lbColor = Color & 0x00FFFFFF;
|
||||
/* FIXME: Fill in the rest of fields!!! */
|
||||
|
||||
BRUSH_UnlockBrush(pbrush);
|
||||
|
|
Loading…
Reference in a new issue