From 5972b1e2846f2f22334ab83315da2ed37f8b40de Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Tue, 6 Aug 2019 11:09:56 +0900 Subject: [PATCH] [SYSSETUP] Caption of 2nd stage ReactOS Setup is too heavy (#1806) The caption text of 2nd stage ReactOS Setup was too bold. CORE-16295 --- 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 595a2a773f7..d0b4dca711c 100644 --- a/dll/win32/syssetup/wizard.c +++ b/dll/win32/syssetup/wizard.c @@ -82,7 +82,7 @@ CreateTitleFont(VOID) HDC hdc; HFONT hFont; - LogFont.lfWeight = FW_HEAVY; + LogFont.lfWeight = FW_BOLD; wcscpy(LogFont.lfFaceName, L"MS Shell Dlg"); hdc = GetDC(NULL);