Commit cac3ca619cd75d1a07a995fe998d92978da2d25e
1 parent
a73e942f
Exists in
master
and in
1 other branch
Sets Courier New as default print font for macOS
Showing
1 changed file
with
5 additions
and
1 deletions
Show diff stats
src/dialogs/print/settings.c
| ... | ... | @@ -79,7 +79,11 @@ static void V3270PrintSettings_init(V3270PrintSettings *widget) |
| 79 | 79 | }; |
| 80 | 80 | |
| 81 | 81 | size_t f; |
| 82 | - widget->font = v3270_font_selection_new("monospace"); | |
| 82 | + #ifdef __APPLE__ | |
| 83 | + widget->font = v3270_font_selection_new("Courier New"); | |
| 84 | + #else | |
| 85 | + widget->font = v3270_font_selection_new("monospace"); | |
| 86 | + #endif | |
| 83 | 87 | widget->color = v3270_color_scheme_new(); |
| 84 | 88 | widget->selected = gtk_check_button_new_with_label( _("Print selection box") ); |
| 85 | 89 | ... | ... |