[COMCTL32] - A button with the style BS_DEFPUSHBUTTON is drawn as defaulted instead of normal.

svn path=/trunk/; revision=74074
This commit is contained in:
Giannis Adamopoulos 2017-03-05 09:35:12 +00:00
parent c27717bac7
commit f3a00c2f57

View file

@ -361,6 +361,11 @@ BOOL BUTTON_PaintWithTheme(HTHEME theme, HWND hwnd, HDC hParamDC, LPARAM prfFlag
}
else drawState = STATE_DISABLED;
if (drawState == STATE_NORMAL && (dwStyle & BUTTON_TYPE) == BS_DEFPUSHBUTTON)
{
drawState = STATE_DEFAULTED;
}
paint(theme, hwnd, hParamDC, drawState, dtFlags, state & BST_FOCUS, prfFlag);
return TRUE;
}