Skip to content

Commit df6623e

Browse files
committed
adjusted main to put themes in different order
1 parent 135edb0 commit df6623e

1 file changed

Lines changed: 1 addition & 12 deletions

File tree

  • src/main/java/io/github/turtleisaac/pokeditor

src/main/java/io/github/turtleisaac/pokeditor/Main.java

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
package io.github.turtleisaac.pokeditor;
22

3-
import javax.swing.*;
4-
5-
import com.formdev.flatlaf.extras.FlatUIDefaultsInspector;
63
import com.formdev.flatlaf.intellijthemes.*;
7-
import com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatAtomOneLightIJTheme;
8-
import com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatLightOwlIJTheme;
9-
import com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatMaterialLighterIJTheme;
10-
import com.formdev.flatlaf.intellijthemes.materialthemeuilite.FlatSolarizedLightIJTheme;
114
import io.github.turtleisaac.nds4j.ui.ProgramType;
125
import io.github.turtleisaac.nds4j.ui.Tool;
13-
import io.github.turtleisaac.nds4j.ui.exceptions.ToolCreationException;
146
import io.github.turtleisaac.pokeditor.gui.PokeditorManager;
157
import io.github.turtleisaac.pokeditor.gui_old.projects.projectwindow.console.ConsoleWindow;
168

179
import java.io.IOException;
1810
import java.nio.charset.StandardCharsets;
19-
import java.util.Locale;
20-
import java.util.function.Supplier;
2111

2212
/**
2313
* @author turtleisaac
@@ -31,7 +21,6 @@ public class Main
3121

3222
public static void main(String[] args) throws IOException
3323
{
34-
FlatUIDefaultsInspector.install( "ctrl shift alt Y" );
3524
String[] mainMenuJokes = new String(Main.class.getResourceAsStream(jokesPath).readAllBytes(), StandardCharsets.UTF_8).split("\n");
3625

3726
// Locale.setDefault(Locale.CHINA);
@@ -42,8 +31,8 @@ public static void main(String[] args) throws IOException
4231
// .setFlavorText("Did you know that Jay likes Moemon?")
4332
.setFlavorText(mainMenuJokes[(int) (Math.random()*(mainMenuJokes.length))])
4433
.setAuthor("Developed by Turtleisaac")
45-
.addLookAndFeel(new FlatDarkPurpleIJTheme())
4634
.addLookAndFeel(new FlatArcOrangeIJTheme())
35+
.addLookAndFeel(new FlatDarkPurpleIJTheme())
4736
// .addLookAndFeel(new javax.swing.plaf.metal.MetalLookAndFeel())
4837
.addGame("Pokémon Platinum", "CPU")
4938
.addGame("Pokémon HeartGold","IPK")

0 commit comments

Comments
 (0)