Compare commits

...

2 Commits

Author SHA1 Message Date
55df70130c Goof-proofing 2024-07-18 06:35:50 -05:00
5fbfc33b47 cleanup temp files when disposing clifford 2024-07-18 06:31:45 -05:00
2 changed files with 8 additions and 0 deletions

View File

@ -141,6 +141,7 @@ public class Clifford implements ActionListener {
@Override
public void windowClosing(WindowEvent e)
{
Main.deleteDir(new File(Main.inpath + "temp/")); // soundtrack gen
invoker.setEnabled(true);
e.getWindow().dispose();
}
@ -150,6 +151,7 @@ public class Clifford implements ActionListener {
@Override
public void actionPerformed(ActionEvent actionEvent) {
if (actionEvent.getSource() == cancelbtn) {
Main.deleteDir(new File(Main.inpath + "temp/")); // soundtrack gen
invoker.setEnabled(true);
frame.dispose();
} else if (actionEvent.getSource() == savebtn && !creating) {
@ -228,6 +230,7 @@ public class Clifford implements ActionListener {
return;
}
JOptionPane.showMessageDialog(frame, "Mod file created", "Success", JOptionPane.INFORMATION_MESSAGE);
Main.deleteDir(new File(Main.inpath + "temp/")); // soundtrack gen
invoker.setEnabled(true);
frame.dispose();
}

View File

@ -268,6 +268,11 @@ public class Suggs implements ActionListener, ListSelectionListener {
}
private void save() {
if (tracklist.isEmpty() && sptrack == null && mptrack == null) {
JOptionPane.showMessageDialog(frame, "Please add at least one song to the playlist.", "Error", JOptionPane.ERROR_MESSAGE);
return;
}
frame.setEnabled(false);
frame.setAlwaysOnTop(false);
Main.deleteDir(new File(System.getProperty("user.home") + "/.firestar/temp/")); // starts with clean temp