This is an automated email from the git hooks/post-receive script. New commit to branch feature/ReplaceComboByList in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit a490a2f965382ed65d48b87905cdedcbe19d805f Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Wed Jun 8 12:31:29 2016 +0200 Handle onEnter on the client combo --- .../faxtomail/ui/swing/content/demande/DemandeUIHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIHandler.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIHandler.java index 29af575..ee6e566 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIHandler.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIHandler.java @@ -468,8 +468,8 @@ public class DemandeUIHandler extends AbstractFaxToMailUIHandler<DemandeUIModel, if (keyCode == KeyEvent.VK_ENTER) { FaxToMailServiceContext serviceContext = getContext().newServiceContext(); MailFolder folder = getModel().getMailFolder(); - List<Client> allowedClients = serviceContext.getClientService().getClientsForFolder(folder); + List<Client> allowedClients = serviceContext.getClientService().getClientsForFolder(folder); getModel().setAllowedClients(allowedClients); clientComboBox.setData(allowedClients); @@ -499,7 +499,7 @@ public class DemandeUIHandler extends AbstractFaxToMailUIHandler<DemandeUIModel, public void focusLost(FocusEvent e) { } }); - + listModelIsModify(model); } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.