X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FSeqPanel.java;h=1176df5583060aca696178a2dbdf6e45b0ac6f39;hb=refs%2Fheads%2Fbug%2FJAL-3239monospacedEps;hp=11ee700584d2865731fab6aa62796e5ddf1c0814;hpb=fdf90308b1b24f4063648449c5f316ced24c938b;p=jalview.git diff --git a/src/jalview/gui/SeqPanel.java b/src/jalview/gui/SeqPanel.java index 11ee700..1176df5 100644 --- a/src/jalview/gui/SeqPanel.java +++ b/src/jalview/gui/SeqPanel.java @@ -255,11 +255,6 @@ public class SeqPanel extends JPanel int wrappedBlock = -1; - MousePos findMousePosition(MouseEvent evt) - { - return findMousePosition(evt, null); - } - /** * Computes the column and sequence row (and possibly annotation row when in * wrapped mode) for the given mouse position @@ -267,22 +262,15 @@ public class SeqPanel extends JPanel * @param evt * @return */ - MousePos findMousePosition(MouseEvent evt, String debug) + MousePos findMousePosition(MouseEvent evt) { - int col = findColumn(evt, debug); + int col = findColumn(evt); int seqIndex = -1; int annIndex = -1; int y = evt.getY(); int charHeight = av.getCharHeight(); int alignmentHeight = av.getAlignment().getHeight(); - if (debug != null) - { - System.out.println(String.format( - "%s: charHeight %d alHeight %d canvasWidth %d canvasHeight %d", - debug, charHeight, alignmentHeight, seqCanvas.getWidth(), - seqCanvas.getHeight())); - } if (av.getWrapAlignment()) { seqCanvas.calculateWrappedGeometry(seqCanvas.getWidth(), @@ -343,11 +331,6 @@ public class SeqPanel extends JPanel */ int findColumn(MouseEvent evt) { - return findColumn(evt, null); - } - - int findColumn(MouseEvent evt, String debug) - { int res = 0; int x = evt.getX(); @@ -368,12 +351,6 @@ public class SeqPanel extends JPanel int y = evt.getY(); y = Math.max(0, y - hgap); x -= seqCanvas.getLabelWidthWest(); - if (debug != null) - { - System.out.println( - String.format("%s: x %d labelWest %d charWidth %d ", debug, - x, seqCanvas.getLabelWidthWest(), charWidth)); - } if (x < 0) { // mouse is over left scale @@ -387,10 +364,6 @@ public class SeqPanel extends JPanel } if (x >= cwidth * charWidth) { - if (debug != null) - { - System.out.println(debug + ": cwidth = " + cwidth); - } // mouse is over right scale return -1; }