diff --git a/src/main/java/org/fenix/llanfair/Actions.java b/src/main/java/org/fenix/llanfair/Actions.java index 53c90e6..2272439 100644 --- a/src/main/java/org/fenix/llanfair/Actions.java +++ b/src/main/java/org/fenix/llanfair/Actions.java @@ -148,6 +148,12 @@ final class Actions { about(); } else if ( source == MenuItem.EXIT ) { if ( confirmOverwrite() ) { + // these might not really be necessary, but at this point just trying to be sure a running timer isn't + // sometimes keeping the app open somehow ?? + run.stop(); + run.reset(); + + // exit the app master.dispose(); } }