Add appropriate error message on file save error

pull/35/head
James Ball 2021-05-19 20:36:03 +01:00
rodzic f97c5076e5
commit 283094b84a
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -252,7 +252,7 @@ public class Controller implements Initializable {
input.close();
recordLabel.setText("Saved to " + file.getAbsolutePath());
} catch (IOException e) {
recordLabel.setText("");
recordLabel.setText("Error saving file");
e.printStackTrace();
}
}