Remove float width
authoramwaterhouse <Andrew Waterhouse>
Mon, 3 Oct 2005 16:14:54 +0000 (16:14 +0000)
committeramwaterhouse <Andrew Waterhouse>
Mon, 3 Oct 2005 16:14:54 +0000 (16:14 +0000)
src/jalview/gui/SequenceRenderer.java

index 8e8b066..6bf4d40 100755 (executable)
@@ -116,10 +116,10 @@ public class SequenceRenderer
 \r
         graphics = g;\r
 \r
-        drawBoxes(seq, start, end, x1, y1, (int) width, height);\r
+        drawBoxes(seq, start, end, x1, y1, width, height);\r
 \r
         fm = g.getFontMetrics();\r
-        drawText(seq, start, end, x1, y1, (int) width, height);\r
+        drawText(seq, start, end, x1, y1,  width, height);\r
     }\r
 \r
     /**\r
@@ -208,14 +208,6 @@ public class SequenceRenderer
         int charOffset = 0;\r
         char s;\r
 \r
-        float fwidth = width + ((float)av.charWidth/(float)width)/width;\r
-\r
-\r
-        if(av.charWidth != (av.charWidth/width)*width)\r
-        {\r
-\r
-        }\r
-\r
         // Need to find the sequence position here.\r
         String sequence = seq.getSequence();\r
 \r
@@ -270,7 +262,7 @@ public class SequenceRenderer
 \r
             charOffset = (width - fm.charWidth(s)) / 2;\r
             graphics.drawString(String.valueOf(s),\r
-                charOffset + x1 + (int)(fwidth * (i - start)), (y1 + height) - pady);\r
+                charOffset + x1 + (int)(width * (i - start)), (y1 + height) - pady);\r
         }\r
     }\r
 \r