JAL-2609 tiny tidy features/JAL-2609fastPaintWrapped
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Tue, 22 Aug 2017 12:34:41 +0000 (13:34 +0100)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Tue, 22 Aug 2017 12:34:41 +0000 (13:34 +0100)
src/jalview/gui/SeqCanvas.java

index 55e6182..22e2fe4 100755 (executable)
@@ -237,10 +237,9 @@ public class SeqCanvas extends JComponent implements ViewportListenerI
        */
       g.setColor(Color.white);
       int y = (ypos + (i * charHeight)) - (charHeight / 5);
-      y -= charHeight; // fillRect: origin is top left of rectangle
-      g.fillRect(0, y, left ? labelWidthWest : labelWidthEast,
+      // fillRect origin is top left of rectangle
+      g.fillRect(0, y - charHeight, left ? labelWidthWest : labelWidthEast,
               charHeight + 1);
-      y += charHeight; // drawString: origin is bottom left of text
 
       if (value != -1)
       {