This commit is contained in:
Downforce Agent 2024-07-13 17:38:42 -05:00
parent c5be641a20
commit 2de4167cea

View File

@ -145,6 +145,7 @@ public class WilkinsCoffee implements ActionListener {
if (result == JFileChooser.APPROVE_OPTION) { if (result == JFileChooser.APPROVE_OPTION) {
try { try {
Files.copy(fileChooser.getSelectedFile().toPath(), new File(Main.inpath + fileChooser.getSelectedFile().getName()).toPath()); Files.copy(fileChooser.getSelectedFile().toPath(), new File(Main.inpath + fileChooser.getSelectedFile().getName()).toPath());
refreshChecklist();
contBtn.setEnabled(true); contBtn.setEnabled(true);
contBtn.setBackground(new Color(221, 88, 11)); //orange contBtn.setBackground(new Color(221, 88, 11)); //orange
} catch (IOException e) { } catch (IOException e) {