Commit a73e942f0a4cb12622d353068fedf74ec5a26363
1 parent
9e27c285
Exists in
master
and in
1 other branch
Change default font for macOS
Showing
2 changed files
with
4 additions
and
2 deletions
Show diff stats
configure.ac
src/terminal/font/properties.c
... | ... | @@ -45,8 +45,10 @@ static const gchar * invalid_font_messages[] = { |
45 | 45 | |
46 | 46 | const gchar * v3270_get_default_font_name() |
47 | 47 | { |
48 | -#ifdef _WIN32 | |
48 | +#if defined(_WIN32) | |
49 | 49 | return "Lucida Console"; |
50 | +#elif defined(__APPLE__) | |
51 | + return "Courier New"; | |
50 | 52 | #else |
51 | 53 | return "monospace"; |
52 | 54 | #endif // _WIN32 | ... | ... |