summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2025-01-22 18:44:13 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2025-01-22 18:44:13 +0100
commit915ea80f4590280e431fb4ebbec0c6496b9a054e (patch)
tree582a05863e70d0e88df50e313a80b5e7d717de70 /CHANGES.txt
parent2bcfcc332d9a6bc121af102f5a5d5d9eba02b603 (diff)
Windows: replace "Arial" by "Microsoft Sans Serif" for the FL_HELVETICA font family
Users who need the old behavior for strict backwards compatibility under Windows can load the previous (Arial) font at program startup with only a few lines of code: #ifdef _WIN32 // reset Windows fonts to pre-1.4.2 state Fl::set_font(FL_HELVETICA, " Arial"); Fl::set_font(FL_HELVETICA + 1, "BArial"); Fl::set_font(FL_HELVETICA + 2, "IArial"); Fl::set_font(FL_HELVETICA + 3, "PArial"); #endif
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 38dfefbd7..627fdf392 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,10 @@
+Changes in FLTK 1.4.2 Released: ??? ?? 2025
+
+ Technical Details and Build Procedure Improvements
+
+ - Use "Microsoft Sans Serif" instead of "Arial" for the FL_HELVETICA font
+ family under Windows.
+
Changes in FLTK 1.4.1 Released: Dec 12 2024
FLTK 1.4.1 is a maintenance release with bug fixes and improvements.