branch feature/trie_demandes_uniquement_sur_click_gauche created (now ad9f895c)
This is an automated email from the git hooks/post-receive script. New change to branch feature/trie_demandes_uniquement_sur_click_gauche in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git at ad9f895c sur l'ente du tableau des demandes : clic gauche -> tri, click droit -> filtre This branch includes the following new commits: new ad9f895c sur l'ente du tableau des demandes : clic gauche -> tri, click droit -> filtre 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 ad9f895c44a129bf6c7a87864220ce2577bba7ad Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Wed Jun 13 17:25:21 2018 +0200 sur l'ente du tableau des demandes : clic gauche -> tri, click droit -> filtre -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/trie_demandes_uniquement_sur_click_gauche in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit ad9f895c44a129bf6c7a87864220ce2577bba7ad Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Wed Jun 13 17:25:21 2018 +0200 sur l'ente du tableau des demandes : clic gauche -> tri, click droit -> filtre --- .../faxtomail/ui/swing/content/demande/DemandeListUIHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeListUIHandler.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeListUIHandler.java index 885a5f14..48e8d5e0 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeListUIHandler.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeListUIHandler.java @@ -240,7 +240,7 @@ public class DemandeListUIHandler extends AbstractFaxToMailDemandListHandler<Dem @Override public void mouseClicked(MouseEvent e) { - if (model.isCanSortResults()) { + if (model.isCanSortResults() && SwingUtilities.isLeftMouseButton(e)) { TableColumnModelExt colModel = (TableColumnModelExt) dataTable.getColumnModel(); int vColumnIndex = colModel.getColumnIndexAtX(e.getX()); TableColumnExt column = colModel.getColumnExt(vColumnIndex); -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm