This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit 8fb309ae52de6fbb00e4d1ee1b856a7946ed3526 Author: jcouteau <couteau@codelutin.com> Date: Wed Jun 20 16:50:23 2018 +0200 fixes #9787 - Liste des fenêtres qui s’empilent les unes sur les autres sans pouvoir les afficher. --- .../franciaflex/faxtomail/ui/swing/actions/ShowDemandeAction.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/actions/ShowDemandeAction.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/actions/ShowDemandeAction.java index c0d43082..69704360 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/actions/ShowDemandeAction.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/actions/ShowDemandeAction.java @@ -208,9 +208,6 @@ public class ShowDemandeAction extends AbstractMainUIFaxToMailAction { List<Client> allowedClients = getContext().getClientCache(); currentEmail.setAllowedClients(allowedClients); - - //JC2018-06-20 bring to front to prevent #9787 from happening on windows - bringCurrentDemandToFront(); } @Override @@ -264,6 +261,8 @@ public class ShowDemandeAction extends AbstractMainUIFaxToMailAction { } } }); + } else { + frame.toFront(); } } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.