From ec1a819de862ef12fdb650f673a11d160c496331 Mon Sep 17 00:00:00 2001 From: gmungoc Date: Fri, 24 Apr 2015 15:42:10 +0100 Subject: [PATCH 1/1] JAL-1691 prevent propagation of scrolling on mouseover follow highlight --- src/jalview/gui/SeqPanel.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/jalview/gui/SeqPanel.java b/src/jalview/gui/SeqPanel.java index 6cd5b70..791a371 100644 --- a/src/jalview/gui/SeqPanel.java +++ b/src/jalview/gui/SeqPanel.java @@ -649,6 +649,13 @@ public class SeqPanel extends JPanel implements MouseListener, { if (av.isFollowHighlight()) { + /* + * if scrollToPosition requires scroll adjustment, this flag prevents + * another scroll event being propagated back to the originator + * + * @see AlignmentPanel#adjustmentValueChanged + */ + ap.setFollowingComplementScroll(true); if (ap.scrollToPosition(results, false)) { seqCanvas.revalidate(); -- 1.7.10.2