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
Родитель 76065bcb1e
Коммит f520d663c9
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

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