mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[SYSSETUP] Fix bold font (#1799)
The font of radio buttons at ReactOS 2nd setup was wrong and too heavy. CORE-16291
This commit is contained in:
parent
b3f55ba2a6
commit
836e3107ba
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ CreateBoldFont(VOID)
|
|||
hDc = GetDC(NULL);
|
||||
|
||||
tmpFont.lfHeight = -MulDiv(8, GetDeviceCaps(hDc, LOGPIXELSY), 72);
|
||||
tmpFont.lfWeight = FW_HEAVY;
|
||||
tmpFont.lfWeight = FW_BOLD;
|
||||
wcscpy(tmpFont.lfFaceName, L"MS Shell Dlg");
|
||||
|
||||
hBoldFont = CreateFontIndirectW(&tmpFont);
|
||||
|
|
Loading…
Reference in a new issue