JAL-2236 fixes for desktop and applet implementation of 'append seqname'
[jalview.git] / src / jalview / gui / AnnotationRowFilter.java
index 0a5e96c..8335042 100644 (file)
@@ -162,8 +162,7 @@ public abstract class AnnotationRowFilter extends JPanel
       }
       String label = av.getAlignment().getAlignmentAnnotation()[i].label;
       // add associated sequence ID if available
-      if (!isSeqAssociated
-              && av.getAlignment().getAlignmentAnnotation()[i].sequenceRef != null)
+      if (av.getAlignment().getAlignmentAnnotation()[i].sequenceRef != null)
       {
         label = label
                 + "_"
@@ -175,7 +174,6 @@ public abstract class AnnotationRowFilter extends JPanel
       {
         anmap[list.size()] = i;
         list.add(label);
-
       }
       else
       {