branch develop updated (a8efffe -> f15f1b3)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git from a8efffe fixes #3505: Add an action to reset to default value (whatever was the current value of option) new f15f1b3 refs #3578 The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit f15f1b3332cc8a8dba84e6f4fff051b089e9e406 Author: Kevin Morin <morin@codelutin.com> Date: Tue Nov 25 11:28:22 2014 +0100 refs #3578 Summary of changes: .../swing/action/ApplicationActionSwingWorker.java | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git commit f15f1b3332cc8a8dba84e6f4fff051b089e9e406 Author: Kevin Morin <morin@codelutin.com> Date: Tue Nov 25 11:28:22 2014 +0100 refs #3578 --- .../swing/action/ApplicationActionSwingWorker.java | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/jaxx-application-swing/src/main/java/org/nuiton/jaxx/application/swing/action/ApplicationActionSwingWorker.java b/jaxx-application-swing/src/main/java/org/nuiton/jaxx/application/swing/action/ApplicationActionSwingWorker.java index 83d4d64..e295c25 100644 --- a/jaxx-application-swing/src/main/java/org/nuiton/jaxx/application/swing/action/ApplicationActionSwingWorker.java +++ b/jaxx-application-swing/src/main/java/org/nuiton/jaxx/application/swing/action/ApplicationActionSwingWorker.java @@ -149,12 +149,17 @@ public class ApplicationActionSwingWorker<A extends AbstractApplicationAction> e @Override public void propertyChange(PropertyChangeEvent evt) { - if (actionUI.isVisible()) { - actionUI.close(); - } - // we do NOT want the timer to wake up then the actionUI dialog cancel(); + + SwingUtilities.invokeLater(new Runnable() { + @Override + public void run() { + //if (actionUI.isVisible()) { + actionUI.close(); + //} + } + }); } }); } -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm