JAL-2250 default Apply Colour to All Groups selected
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 7 Mar 2019 15:08:15 +0000 (15:08 +0000)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 7 Mar 2019 15:08:15 +0000 (15:08 +0000)
src/jalview/gui/AlignFrame.java
src/jalview/gui/AlignViewport.java

index 25c6dd4..e17b331 100644 (file)
@@ -2741,6 +2741,12 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
     newap.av.setRedoList(viewport.getRedoList());
 
     /*
+     * copy any visualisation settings that are not saved in the project
+     */
+    newap.av.setColourAppliesToAllGroups(
+            viewport.getColourAppliesToAllGroups());
+
+    /*
      * Views share the same mappings; need to deregister any new mappings
      * created by copyAlignPanel, and register the new reference to the shared
      * mappings
index f94b74d..e0abfd9 100644 (file)
@@ -304,6 +304,7 @@ public class AlignViewport extends AlignmentViewport
     {
       residueShading.setConsensus(hconsensus);
     }
+    setColourAppliesToAllGroups(true);
   }
 
   boolean validCharWidth;