summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--src/fl_font_mac.cxx12
2 files changed, 8 insertions, 6 deletions
diff --git a/CHANGES b/CHANGES
index f6e03e89e..7637cb52a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -34,6 +34,8 @@ CHANGES IN FLTK 1.3.4 RELEASED: ??? ?? ????
(lpr/lpq) when SystemV-style commands (lp/lpstat) are not available.
- Drawing alpha-blended images under X11 is now accelerated with
Xrender.
+ - The fonts used for the FL_COURIER font family was changed on the Mac OS X
+ platform from 'Courier New' to 'Courier' because it was too thin.
Bug fixes
diff --git a/src/fl_font_mac.cxx b/src/fl_font_mac.cxx
index 895eef826..0a741a7de 100644
--- a/src/fl_font_mac.cxx
+++ b/src/fl_font_mac.cxx
@@ -182,10 +182,10 @@ static Fl_Fontdesc built_in_table_PS[] = { // PostScript font names preferred wh
{"Arial-BoldMT"},
{"Arial-ItalicMT"},
{"Arial-BoldItalicMT"},
-{"CourierNewPSMT"},
-{"CourierNewPS-BoldMT"},
-{"CourierNewPS-ItalicMT"},
-{"CourierNewPS-BoldItalicMT"},
+{"Courier"},
+{"Courier-Bold"},
+{"Courier-Oblique"},
+{"Courier-BoldOblique"},
{"TimesNewRomanPSMT"},
{"TimesNewRomanPS-BoldMT"},
{"TimesNewRomanPS-ItalicMT"},
@@ -202,8 +202,8 @@ static Fl_Fontdesc built_in_table_full[] = { // full font names used before 10.5
{"Arial Bold"},
{"Arial Italic"},
{"Arial Bold Italic"},
- {"Courier New"},
- {"Courier New Bold"},
+ {"Courier"},
+ {"Courier Bold"},
{"Courier New Italic"},
{"Courier New Bold Italic"},
{"Times New Roman"},