tedst/utf8: Change default font used under Windows for "Unicode Display Test"

The Windows doc at https://learn.microsoft.com/en-us/typography/font-list/arial-unicode-ms
 of the "Arial Unicode MS" font reads
"The font was included with Office but not Windows. …
We stopped servicing and updating Arial Unicode and no longer install it as part of Office."
Using that font is therefore not the best choice.
This commmit uses "Microsoft Sans Serif" instead available in all Windows versions
since Windows 2000.
This commit is contained in:
ManoloFLTK
2025-01-19 18:39:38 +01:00
parent 407567b70e
commit 2a58560b7d

View File

@@ -582,7 +582,7 @@ int main(int argc, char** argv)
/* setup the extra font */
Fl::set_font(extra_font,
#ifdef _WIN32
" Arial Unicode MS"
" Microsoft Sans Serif"
#elif defined(__APPLE__)
"Monaco"
#else