This is an automated email from the git hooks/post-receive script. New commit to branch feature/7045 in repository observe. See http://git.codelutin.com/observe.git commit 12f2b1083c08afc9a46f2671604d997059de64ad Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Mon Jun 8 11:25:03 2015 +0200 refs #7045 : la verification que la position du curseur est trop réstricive. --- .../ui/util/table/AutotSelectRowAndShowPopupActionSupport.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/observe-swing/src/main/java/fr/ird/observe/ui/util/table/AutotSelectRowAndShowPopupActionSupport.java b/observe-swing/src/main/java/fr/ird/observe/ui/util/table/AutotSelectRowAndShowPopupActionSupport.java index 84e5335..8a957a2 100644 --- a/observe-swing/src/main/java/fr/ird/observe/ui/util/table/AutotSelectRowAndShowPopupActionSupport.java +++ b/observe-swing/src/main/java/fr/ird/observe/ui/util/table/AutotSelectRowAndShowPopupActionSupport.java @@ -75,13 +75,8 @@ public abstract class AutotSelectRowAndShowPopupActionSupport { public void mouseClicked(MouseEvent e) { if (AutotSelectRowAndShowPopupActionSupport.this.table.isEnabled()) { - Point p = e.getPoint(); + autoSelectRowInTable(e); - if (AutotSelectRowAndShowPopupActionSupport.this.pane.getViewport().contains(p)) { - - autoSelectRowInTable(e); - - } } } }; -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.