Module: wine Branch: refs/heads/master Commit: d51faa74db3bf1b2d5fb547460baefeda2e4faf6 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=d51faa74db3bf1b2d5fb5474...
Author: Duane Clark fpga@pacbell.net Date: Sun Jul 16 13:49:06 2006 -0700
notepad: Change notepad printing font.
---
programs/notepad/main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/programs/notepad/main.c b/programs/notepad/main.c index d4ba472..139d617 100644 --- a/programs/notepad/main.c +++ b/programs/notepad/main.c @@ -58,11 +58,11 @@ static VOID NOTEPAD_InitFont(void) LOGFONT *lf = &Globals.lfFont; static const WCHAR systemW[] = { 'S','y','s','t','e','m',0 };
- lf->lfHeight = -10; + lf->lfHeight = -40; lf->lfWidth = 0; lf->lfEscapement = 0; lf->lfOrientation = 0; - lf->lfWeight = FW_BOLD; + lf->lfWeight = FW_REGULAR; lf->lfItalic = FALSE; lf->lfUnderline = FALSE; lf->lfStrikeOut = FALSE;