From 6be0925245bb05d1da7814f2b3ed54a98bae4c7c Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sat, 17 Oct 2015 19:01:40 +0000 Subject: [PATCH] [NOTEPAD] Set Lucida Console as the default font. By Ismael Ferreras Morezuelas. CORE-10316 svn path=/trunk/; revision=69572 --- reactos/base/applications/notepad/settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/applications/notepad/settings.c b/reactos/base/applications/notepad/settings.c index df396eb2bd5..590a8c8e537 100644 --- a/reactos/base/applications/notepad/settings.c +++ b/reactos/base/applications/notepad/settings.c @@ -173,7 +173,7 @@ void NOTEPAD_LoadSettingsFromRegistry(void) Globals.lfFont.lfCharSet = 163; Globals.lfFont.lfClipPrecision = 2; Globals.lfFont.lfEscapement = 0; - _tcscpy(Globals.lfFont.lfFaceName, _T("Arial")); + _tcscpy(Globals.lfFont.lfFaceName, _T("Lucida Console")); Globals.lfFont.lfItalic = 0; Globals.lfFont.lfOrientation = 0; Globals.lfFont.lfOutPrecision = 3;