From b28eb18c75ad507c91866940ace22d1d0455c01e Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 21 Mar 2016 12:06:39 -0400 Subject: [PATCH] another little stab in the dark. shouldn't cause any harm at any rate --- src/main/java/org/fenix/llanfair/Actions.java | 6 ++++++ 1 file changed, 6 insertions(+) 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(); } }