Typography:

- fixed semibold font on Ubuntu
- use font "Montserrat SemiBold" on Fedora

(PR #396)
This commit is contained in:
Karl Tauber
2021-11-24 10:37:48 +01:00
parent 64c7318cfc
commit 7c99872278
3 changed files with 14 additions and 3 deletions

View File

@@ -86,6 +86,7 @@ public class FlatFontsTest
for( Map.Entry<String, Font> e : info.fonts.entrySet() ) {
JLabel label = new JLabel( e.getKey() );
label.setFont( e.getValue().deriveFont( (float) UIScale.scale( 36 ) ) );
label.setToolTipText( e.getValue().toString() );
previewPanel.add( label, "wrap" );
}