mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
Sascha Clausen <r4v3r AT hotmail DOT de>
- Draw bullet for menu radio group. - See issue #4193 for details. svn path=/trunk/; revision=39871
This commit is contained in:
parent
4ae3c614b0
commit
89a210a96b
1 changed files with 4 additions and 3 deletions
|
@ -1276,11 +1276,12 @@ static BOOL UITOOLS95_DrawFrameMenu(HDC dc, LPRECT r, UINT uFlags)
|
|||
yc = myr.top + SmallDiam - SmallDiam/2;
|
||||
i = 234*SmallDiam/750;
|
||||
i = i < 1 ? 1 : i;
|
||||
myr.left = xc - i+i/2;
|
||||
myr.left = xc - i/2;
|
||||
myr.right = xc + i/2;
|
||||
myr.top = yc - i+i/2;
|
||||
myr.top = yc - i/2;
|
||||
myr.bottom = yc + i/2;
|
||||
Pie(dc, myr.left, myr.top, myr.right, myr.bottom, xe, ye, xe, ye);
|
||||
// if the start and the end point are equal, Pie() only draws a single line, so start one pixel lower
|
||||
Pie(dc, myr.left, myr.top, myr.right, myr.bottom, xe, ye+1, xe, ye);
|
||||
break;
|
||||
|
||||
case DFCS_MENUCHECK:
|
||||
|
|
Loading…
Reference in a new issue