projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3f55ba
)
[SYSSETUP] Fix bold font (#1799)
author
Katayama Hirofumi MZ
<katayama.hirofumi.mz@gmail.com>
Mon, 5 Aug 2019 00:44:25 +0000
(09:44 +0900)
committer
GitHub
<noreply@github.com>
Mon, 5 Aug 2019 00:44:25 +0000
(09:44 +0900)
The font of radio buttons at ReactOS 2nd setup was wrong and too heavy. CORE-16291
dll/win32/syssetup/wizard.c
patch
|
blob
|
history
diff --git
a/dll/win32/syssetup/wizard.c
b/dll/win32/syssetup/wizard.c
index
8422a9c
..
595a2a7
100644
(file)
--- 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);