JAL-3107 update any group associated annotation rows when a new group is created
authorJim Procter <jprocter@issues.jalview.org>
Fri, 7 Sep 2018 14:05:27 +0000 (15:05 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Fri, 7 Sep 2018 14:05:27 +0000 (15:05 +0100)
help/html/releases.html
src/jalview/gui/AlignFrame.java

index 3dac399..4a7276b 100755 (executable)
@@ -120,6 +120,11 @@ li:before {
               annotation displayed.
             </li>
             <li>
+              <!-- JAL-3107 -->Group conservation/consensus not shown
+              for newly created group when 'Apply to all groups'
+              selected
+            </li>
+            <li>
               <!-- JAL-3087 -->Corrupted display when switching to
               wrapped mode when sequence panel's vertical scrollbar is
               visible.
index a27b495..c5a2bf0 100644 (file)
@@ -5304,6 +5304,10 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
   {
     if (avc.createGroup())
     {
+      if (applyAutoAnnotationSettings.isSelected())
+      {
+        alignPanel.updateAnnotation(true, false);
+      }
       alignPanel.alignmentChanged();
     }
   }