Theme Editor:

- use JetBrains Mono font for editor area
- added Inter font to allow using it in preview (Java 11+)
This commit is contained in:
Karl Tauber
2022-05-29 16:54:06 +02:00
parent e7d2b5cbb6
commit 92cd6f8f34
3 changed files with 29 additions and 4 deletions

View File

@@ -22,6 +22,8 @@ plugins {
dependencies {
implementation( project( ":flatlaf-core" ) )
implementation( project( ":flatlaf-extras" ) )
implementation( project( ":flatlaf-fonts-inter" ) )
implementation( project( ":flatlaf-fonts-jetbrains-mono" ) )
implementation( "com.miglayout:miglayout-swing:5.3" )
implementation( "com.fifesoft:rsyntaxtextarea:3.1.4" )
@@ -32,6 +34,8 @@ tasks {
jar {
dependsOn( ":flatlaf-core:jar" )
dependsOn( ":flatlaf-extras:jar" )
dependsOn( ":flatlaf-fonts-inter:jar" )
dependsOn( ":flatlaf-fonts-jetbrains-mono:jar" )
manifest {
attributes( "Main-Class" to "com.formdev.flatlaf.themeeditor.FlatLafThemeEditor" )