From d907c469ed7debe7c1b11cfef2364d354da4b00f Mon Sep 17 00:00:00 2001 From: Karl Tauber Date: Sun, 24 Oct 2021 11:43:28 +0200 Subject: [PATCH] Theme Editor: renamed class `FlatThemeEditor` to `FlatLafThemeEditor` because this name is shown in macOS screen menu bar (and to be consistent with `FlatLafDemo`) --- flatlaf-theme-editor/build.gradle.kts | 2 +- .../{FlatThemeEditor.java => FlatLafThemeEditor.java} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename flatlaf-theme-editor/src/main/java/com/formdev/flatlaf/themeeditor/{FlatThemeEditor.java => FlatLafThemeEditor.java} (96%) diff --git a/flatlaf-theme-editor/build.gradle.kts b/flatlaf-theme-editor/build.gradle.kts index 1ceec77c..2b6952fd 100644 --- a/flatlaf-theme-editor/build.gradle.kts +++ b/flatlaf-theme-editor/build.gradle.kts @@ -34,7 +34,7 @@ tasks { dependsOn( ":flatlaf-extras:jar" ) manifest { - attributes( "Main-Class" to "com.formdev.flatlaf.themeeditor.FlatThemeEditor" ) + attributes( "Main-Class" to "com.formdev.flatlaf.themeeditor.FlatLafThemeEditor" ) if( JavaVersion.current() >= JavaVersion.VERSION_1_9 ) attributes( "Multi-Release" to "true" ) diff --git a/flatlaf-theme-editor/src/main/java/com/formdev/flatlaf/themeeditor/FlatThemeEditor.java b/flatlaf-theme-editor/src/main/java/com/formdev/flatlaf/themeeditor/FlatLafThemeEditor.java similarity index 96% rename from flatlaf-theme-editor/src/main/java/com/formdev/flatlaf/themeeditor/FlatThemeEditor.java rename to flatlaf-theme-editor/src/main/java/com/formdev/flatlaf/themeeditor/FlatLafThemeEditor.java index 5bd9efdb..0b35acaa 100644 --- a/flatlaf-theme-editor/src/main/java/com/formdev/flatlaf/themeeditor/FlatThemeEditor.java +++ b/flatlaf-theme-editor/src/main/java/com/formdev/flatlaf/themeeditor/FlatLafThemeEditor.java @@ -21,7 +21,7 @@ package com.formdev.flatlaf.themeeditor; * * @author Karl Tauber */ -public class FlatThemeEditor +public class FlatLafThemeEditor { public static void main( String[] args ) { FlatThemeFileEditor.main( args );