1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

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]
This commit is contained in:
Ben Harris 2002-11-25 23:34:59 +00:00
parent 76065bcb1e
commit f520d663c9

View File

@ -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;