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 8cd3e942e67f22fe608f2d6d4141ba87ba02fd67 Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Mon Jun 8 10:57:57 2015 +0200 refs #7045 : la verification que la position du curseur est trop réstricive. --- .../observe/ui/tree/ObserveNavigationTreeShowPopupAction.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/observe-swing/src/main/java/fr/ird/observe/ui/tree/ObserveNavigationTreeShowPopupAction.java b/observe-swing/src/main/java/fr/ird/observe/ui/tree/ObserveNavigationTreeShowPopupAction.java index c2e5607..ad8811b 100644 --- a/observe-swing/src/main/java/fr/ird/observe/ui/tree/ObserveNavigationTreeShowPopupAction.java +++ b/observe-swing/src/main/java/fr/ird/observe/ui/tree/ObserveNavigationTreeShowPopupAction.java @@ -109,14 +109,7 @@ public class ObserveNavigationTreeShowPopupAction { @Override public void mouseClicked(MouseEvent e) { if (tree.isEnabled()) { - - Point p = e.getPoint(); - - if (ObserveNavigationTreeShowPopupAction.this.pane.getViewport().contains(p)) { - - autoSelectNodeInTree(e); - - } + autoSelectNodeInTree(e); } } }; -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.