mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
DrawIconEx: when flags=0 use flags=DI_NORMAL instead.
This commit is contained in:
parent
fa9d4e4f50
commit
9199f4a492
1 changed files with 8 additions and 0 deletions
|
@ -1901,12 +1901,20 @@ BOOL WINAPI DrawIconEx( HDC hdc, INT x0, INT y0, HICON hIcon,
|
|||
HBITMAP hB_off = 0, hOld = 0;
|
||||
|
||||
if (!ptr) return FALSE;
|
||||
TRACE_(icon)("(hdc=%x,pos=%d.%d,hicon=%x,extend=%d.%d,istep=%d,br=%x,flags=0x%08x)\n",
|
||||
hdc,x0,y0,hIcon,cxWidth,cyWidth,istep,hbr,flags
|
||||
);
|
||||
|
||||
if (istep)
|
||||
FIXME_(icon)("Ignoring istep=%d\n", istep);
|
||||
if (flags & DI_COMPAT)
|
||||
FIXME_(icon)("Ignoring flag DI_COMPAT\n");
|
||||
|
||||
if (!flags) {
|
||||
FIXME_(icon)("no flags set? setting to DI_NORMAL\n");
|
||||
flags = DI_NORMAL;
|
||||
}
|
||||
|
||||
/* Calculate the size of the destination image. */
|
||||
if (cxWidth == 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue