winhelp: Enlarge font size by 3 as native winhelp does.

This commit is contained in:
Kirill K. Smirnov 2007-12-01 19:03:20 +03:00 committed by Alexandre Julliard
parent 2c52f8883d
commit 33a05f088e
1 changed files with 1 additions and 1 deletions

View File

@ -1266,7 +1266,7 @@ static BOOL HLPFILE_ReadFont(HLPFILE* hlpfile)
flag = ref[dscr_offset + i * 11 + 0];
family = ref[dscr_offset + i * 11 + 2];
hlpfile->fonts[i].LogFont.lfHeight = -ref[dscr_offset + i * 11 + 1] / 2;
hlpfile->fonts[i].LogFont.lfHeight = -ref[dscr_offset + i * 11 + 1] / 2 - 3;
hlpfile->fonts[i].LogFont.lfWidth = 0;
hlpfile->fonts[i].LogFont.lfEscapement = 0;
hlpfile->fonts[i].LogFont.lfOrientation = 0;