Commit 816802cb authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

user32: Fix DFC_BUTTONRADIOMASK flag support in DrawFrameControl.

parent 997cb5c6
......@@ -792,6 +792,8 @@ static BOOL UITOOLS95_DFC_ButtonRadio(HDC dc, LPRECT r, UINT uFlags)
if((uFlags & 0xff) == DFCS_BUTTONRADIOIMAGE)
FillRect(dc, r, GetStockObject(BLACK_BRUSH));
else if((uFlags & 0xff) == DFCS_BUTTONRADIOMASK)
FillRect(dc, r, GetStockObject(WHITE_BRUSH));
xc = myr.left + SmallDiam - SmallDiam/2;
yc = myr.top + SmallDiam - SmallDiam/2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment