JAL-3091 release notes for JAL-3104
authorJim Procter <jprocter@issues.jalview.org>
Thu, 6 Sep 2018 19:41:29 +0000 (20:41 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Thu, 6 Sep 2018 19:41:29 +0000 (20:41 +0100)
help/html/releases.html
src/jalview/gui/Desktop.java

index 0bc9e4e..a861901 100755 (executable)
@@ -111,6 +111,11 @@ li:before {
         <em></em>
         <ul>
             <li>
+              <!-- JAL-3104 -->Poorly scaled bar in quality annotation
+              row shown in Feredoxin Structure alignment view of example
+              alignment.
+            </li>
+            <li>
               <!-- JAL-2854 -->Annotation obscures sequences if lots of
               annotation displayed.
             </li>
index 259e693..b65c73c 100644 (file)
@@ -1940,6 +1940,16 @@ public class Desktop extends jalview.jbgui.GDesktop
         }
       }
     }
+    for (AlignmentPanel ap : source.alignPanels)
+    {
+      SwingUtilities.invokeLater(new Runnable() { 
+        @Override
+        public void run()
+        {
+          ap.setSize(ap.getSize());
+        }
+      });
+    }
 
   }