git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cce7a27
)
JAL-2609 tiny tidy
features/JAL-2609fastPaintWrapped
author
gmungoc
<g.m.carstairs@dundee.ac.uk>
Tue, 22 Aug 2017 12:34:41 +0000
(13:34 +0100)
committer
gmungoc
<g.m.carstairs@dundee.ac.uk>
Tue, 22 Aug 2017 12:34:41 +0000
(13:34 +0100)
src/jalview/gui/SeqCanvas.java
patch
|
blob
|
history
diff --git
a/src/jalview/gui/SeqCanvas.java
b/src/jalview/gui/SeqCanvas.java
index
55e6182
..
22e2fe4
100755
(executable)
--- a/
src/jalview/gui/SeqCanvas.java
+++ b/
src/jalview/gui/SeqCanvas.java
@@
-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)
{