JAL-3377 corrected wrapped widths height for IdCanvas
[jalview.git] / src / jalview / gui / IdCanvas.java
index 951db78..42376c7 100755 (executable)
@@ -382,9 +382,17 @@ public class IdCanvas extends JPanel implements ViewportListenerI
 
     int annotationHeight = 0;
 
+    final int charHeight = alignViewport.getCharHeight();
+    int hgap = charHeight;
+    if (alignViewport.getScaleAboveWrapped())
+    {
+      hgap += charHeight;
+    }
+
     AnnotationLabels labels = null;
     if (alignViewport.isShowAnnotation())
     {
+      hgap += SeqCanvas.SEQS_ANNOTATION_GAP;
       if (ap == null)
       {
         ap = new AnnotationPanel(alignViewport);
@@ -393,13 +401,6 @@ public class IdCanvas extends JPanel implements ViewportListenerI
       labels = new AnnotationLabels(alignViewport);
     }
 
-    final int charHeight = alignViewport.getCharHeight();
-    int hgap = charHeight;
-    if (alignViewport.getScaleAboveWrapped())
-    {
-      hgap += charHeight;
-    }
-
     /*
      * height of alignment + gap + annotations (if shown)
      */