TIL there's a muppet named rizz rat... gen z has ruined me

This commit is contained in:
2024-05-07 08:44:26 -05:00
parent 0175293a0a
commit 16337680a8
3 changed files with 75 additions and 2 deletions

View File

@@ -260,8 +260,18 @@ public class MissPiggy implements ActionListener {
// Will likely split the below functions into separate classes to work with intellij GUI designer.
public void deployModGUI() {
// todo dialog that monitors psarc progress, handles file transfers, etc
// could prevent closing program during this process? (may also be unnecessary)
// prevent interruptions
frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
frame.setEnabled(false);
// start
new Gonzo().DeployMods();
}
public void wrapUpDeployment() {
// restore functionality to main window
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.setEnabled(true);
}
public void importModGUI() {