cleanup temp files when disposing clifford

This commit is contained in:
Downforce Agent 2024-07-18 06:31:45 -05:00
parent 00b8d540b3
commit 5fbfc33b47

View File

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