Goof-proofing

This commit is contained in:
Downforce Agent 2024-07-18 06:35:50 -05:00
parent 5fbfc33b47
commit 55df70130c

View File

@ -268,6 +268,11 @@ public class Suggs implements ActionListener, ListSelectionListener {
} }
private void save() { 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.setEnabled(false);
frame.setAlwaysOnTop(false); frame.setAlwaysOnTop(false);
Main.deleteDir(new File(System.getProperty("user.home") + "/.firestar/temp/")); // starts with clean temp Main.deleteDir(new File(System.getProperty("user.home") + "/.firestar/temp/")); // starts with clean temp