This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jtimer. See http://git.chorem.org/jtimer.git commit 5f9877eef8cad482eff5ec9cf30076701416a1e5 Author: Eric Chatellier <chatellier@codelutin.com> Date: Wed Mar 9 10:54:19 2016 +0100 fixes #1341: Double click on a running should stop it --- src/main/java/org/chorem/jtimer/JTimer.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/chorem/jtimer/JTimer.java b/src/main/java/org/chorem/jtimer/JTimer.java index a48f2b2..a8db87c 100644 --- a/src/main/java/org/chorem/jtimer/JTimer.java +++ b/src/main/java/org/chorem/jtimer/JTimer.java @@ -1395,11 +1395,9 @@ public class JTimer extends SingleFrameApplication implements if (appTask != null) { getContext().getTaskService().execute(appTask); } - /* TODO EC-20100416 temp disable, called twice, can display - -1 task running :( - } else if (isSelectedSingleRunningTask()) { + } else if (isSelectedSingleTask()) { TimerTask task = projectsAndTasksTable.getSelectedTasks().get(0); - stopTask(task); */ + stopTask(task); } else { if (log.isDebugEnabled()) { log.debug("Non selected non running task to launch"); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.