From f520d663c953f1161565f9aedc7e877fc831ad34 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 25 Nov 2002 23:34:59 +0000 Subject: [PATCH] Make the default font on Mac OS be Monaco 9 rather than Monaco 10, since the former is available as a bitmap. [originally from svn r2258] --- settings.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/settings.c b/settings.c index 9530b4ae..28b44c05 100644 --- a/settings.c +++ b/settings.c @@ -493,7 +493,11 @@ void load_settings(char *section, int do_host, Config * cfg) #ifdef _WINDOWS gppi(sesskey, "FontCharSet", ANSI_CHARSET, &cfg->fontcharset); #endif +#ifdef macintosh + gppi(sesskey, "FontHeight", 9, &cfg->fontheight); +#else gppi(sesskey, "FontHeight", 10, &cfg->fontheight); +#endif #ifdef _WINDOWS if (cfg->fontheight < 0) { int oldh, newh;