mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-02-04 06:02:24 +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:
parent
76065bcb1e
commit
f520d663c9
@ -493,7 +493,11 @@ void load_settings(char *section, int do_host, Config * cfg)
|
|||||||
#ifdef _WINDOWS
|
#ifdef _WINDOWS
|
||||||
gppi(sesskey, "FontCharSet", ANSI_CHARSET, &cfg->fontcharset);
|
gppi(sesskey, "FontCharSet", ANSI_CHARSET, &cfg->fontcharset);
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef macintosh
|
||||||
|
gppi(sesskey, "FontHeight", 9, &cfg->fontheight);
|
||||||
|
#else
|
||||||
gppi(sesskey, "FontHeight", 10, &cfg->fontheight);
|
gppi(sesskey, "FontHeight", 10, &cfg->fontheight);
|
||||||
|
#endif
|
||||||
#ifdef _WINDOWS
|
#ifdef _WINDOWS
|
||||||
if (cfg->fontheight < 0) {
|
if (cfg->fontheight < 0) {
|
||||||
int oldh, newh;
|
int oldh, newh;
|
||||||
|
Loading…
Reference in New Issue
Block a user