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
@@ -110,7 +110,7 @@ case "$host" in | @@ -110,7 +110,7 @@ case "$host" in | ||
110 | 110 | ||
111 | INSTALL_PACKAGES="linux-lib ${INSTALL_PACKAGES}" | 111 | INSTALL_PACKAGES="linux-lib ${INSTALL_PACKAGES}" |
112 | 112 | ||
113 | - app_cv_static='yes' | 113 | + app_cv_static='no' |
114 | ;; | 114 | ;; |
115 | 115 | ||
116 | *) | 116 | *) |
src/terminal/font/properties.c
@@ -45,8 +45,10 @@ static const gchar * invalid_font_messages[] = { | @@ -45,8 +45,10 @@ static const gchar * invalid_font_messages[] = { | ||
45 | 45 | ||
46 | const gchar * v3270_get_default_font_name() | 46 | const gchar * v3270_get_default_font_name() |
47 | { | 47 | { |
48 | -#ifdef _WIN32 | 48 | +#if defined(_WIN32) |
49 | return "Lucida Console"; | 49 | return "Lucida Console"; |
50 | +#elif defined(__APPLE__) | ||
51 | + return "Courier New"; | ||
50 | #else | 52 | #else |
51 | return "monospace"; | 53 | return "monospace"; |
52 | #endif // _WIN32 | 54 | #endif // _WIN32 |