https://git.reactos.org/?p=reactos.git;a=commitdiff;h=836e3107ba430f737930a462b88232ae5f2dce58

commit 836e3107ba430f737930a462b88232ae5f2dce58
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Mon Aug 5 09:44:25 2019 +0900
Commit:     GitHub <[email protected]>
CommitDate: Mon Aug 5 09:44:25 2019 +0900

    [SYSSETUP] Fix bold font (#1799)
    
    The font of radio buttons at ReactOS 2nd setup was wrong and too heavy. 
CORE-16291
---
 dll/win32/syssetup/wizard.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dll/win32/syssetup/wizard.c b/dll/win32/syssetup/wizard.c
index 8422a9c9c63..595a2a773f7 100644
--- a/dll/win32/syssetup/wizard.c
+++ b/dll/win32/syssetup/wizard.c
@@ -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);

Reply via email to