transferred the storage position of the HMM to annotations
[jalview.git] / src / jalview / gui / AnnotationLabels.java
index 8ca1a4e..9127106 100755 (executable)
@@ -421,7 +421,8 @@ public class AnnotationLabels extends JPanel implements MouseListener,
     if (selectedRow < aa.length)
     {
       final String label = aa[selectedRow].label;
-      if (!aa[selectedRow].autoCalculated)
+      if (!(aa[selectedRow].autoCalculated
+              || label.indexOf("Information Content") > -1))
       {
         if (aa[selectedRow].graph == AlignmentAnnotation.NO_GRAPH)
         {
@@ -969,7 +970,7 @@ public class AnnotationLabels extends JPanel implements MouseListener,
     ArrayList<int[]> hiddenColumns = null;
     if (av.hasHiddenColumns())
     {
-      hiddenColumns = new ArrayList<int[]>();
+      hiddenColumns = new ArrayList<>();
       for (int[] region : av.getAlignment().getHiddenColumns()
               .getHiddenRegions())
       {