JAL-3239 release note
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Mon, 6 May 2019 08:23:18 +0000 (09:23 +0100)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Mon, 6 May 2019 08:23:18 +0000 (09:23 +0100)
help/help/html/releases.html
src/jalview/gui/SequenceRenderer.java

index b468f68..9c75553 100755 (executable)
@@ -167,6 +167,8 @@ li:before {
           <li>
             <!-- JAL-3244 -->'View [Structure] Mappings' and structure superposition in Jmol fail on Windows</li>
           <li>
+            <!-- JAL-3239 -->Text misaligned in EPS or SVG image export with monospaced font</li>
+          <li>
             <!-- JAL-3171 -->Warning of 'Duplicate entry' when saving
             Jalview project involving multiple views</li>
           <li>
index 39c1ba7..fb967ed 100755 (executable)
@@ -259,6 +259,11 @@ public class SequenceRenderer implements jalview.api.SequenceRenderer
 
     boolean drawAllText = monospacedFont && av.getShowText() && allGroups.length == 0
             && !av.getColourText() && av.getThresholdTextColour() == 0;
+
+    /*
+     * EPS or SVG misaligns monospaced strings (JAL-3239)
+     * so always draw these one character at a time
+     */
     if (graphics instanceof EpsGraphics2D
             || graphics instanceof SVGGraphics2D)
     {