Update Message on abort

This commit is contained in:
Lucas Alber
2019-02-27 15:39:58 +01:00
parent 20dc9d3d25
commit db1017ddde

View File

@@ -52,7 +52,7 @@ public class Main {
frame.addWindowListener(new WindowAdapter(){ frame.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e) { public void windowClosing(WindowEvent e) {
if (!finished) { if (!finished) {
if (JOptionPane.showConfirmDialog(frame, "Abort and Close?") == 0) { if (JOptionPane.showConfirmDialog(frame, "Abort?") == 0) {
aborted = true; aborted = true;
if (processingThread != null) { if (processingThread != null) {
try { try {