mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-11 06:27:13 -06:00
Merge pull request #237 from ingokegel/macos_font
JetBrains Runtime 11 has support for displaying the .AppleSystemUIFont font.
This commit is contained in:
@@ -467,8 +467,13 @@ public abstract class FlatLaf
|
||||
} else if( SystemInfo.isMacOS ) {
|
||||
String fontName;
|
||||
if( SystemInfo.isMacOS_10_15_Catalina_orLater ) {
|
||||
// use Helvetica Neue font
|
||||
fontName = "Helvetica Neue";
|
||||
if (SystemInfo.isJetBrainsJVM_11_orLater) {
|
||||
// See https://youtrack.jetbrains.com/issue/JBR-1915
|
||||
fontName = ".AppleSystemUIFont";
|
||||
} else {
|
||||
// use Helvetica Neue font
|
||||
fontName = "Helvetica Neue";
|
||||
}
|
||||
} else if( SystemInfo.isMacOS_10_11_ElCapitan_orLater ) {
|
||||
// use San Francisco Text font
|
||||
fontName = ".SF NS Text";
|
||||
|
||||
Reference in New Issue
Block a user