https://git.reactos.org/?p=reactos.git;a=commitdiff;h=5972b1e2846f2f22334ab83315da2ed37f8b40de
commit 5972b1e2846f2f22334ab83315da2ed37f8b40de Author: Katayama Hirofumi MZ <[email protected]> AuthorDate: Tue Aug 6 11:09:56 2019 +0900 Commit: GitHub <[email protected]> CommitDate: Tue Aug 6 11:09:56 2019 +0900 [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);
