hopping off for a bit

This commit is contained in:
2024-05-07 05:41:53 -05:00
parent 89b32977e5
commit 3573e23cf5
4 changed files with 8 additions and 8 deletions

View File

@@ -69,8 +69,6 @@ public class Kermit implements ActionListener {
javax.swing.text.SimpleAttributeSet align= new javax.swing.text.SimpleAttributeSet();
public void setup(File fConf) { //File variable is redundant. unused
// todo Disable MissPiggy
frame.getContentPane().setBackground(Color.WHITE);
radg1.add(buttonCompat);
radg1.add(buttonFast);

View File

@@ -75,9 +75,9 @@ public class Main {
// check and load configs
File fConf = new File(System.getProperty("user.home") + "/.firestar/firestar.conf");
if (!fConf.isFile()) {
System.out.println("No configuration was found. Starting the initial setup");
new Kermit().setup(fConf); // this is a fresh install, run the OOBE.
} else {
// todo load modlist
new MissPiggy().Action(); // Quick! Start singing Firework by Katy Perry! (or open the main window i guess...)
}
}

View File

@@ -68,7 +68,9 @@ public class MissPiggy implements ActionListener {
// Initialize the main window
public void Action(/*Main entryPoint*/) {
// populate menu bar
System.out.println("Main window created");
// populate menu bar
menuBar = new JMenuBar();
fileMenu = new JMenu("File");
toolsMenu = new JMenu("Tools");