JAL-3187 basic first version for tooltips only (rendering yet to do)
[jalview.git] / src / jalview / viewmodel / seqfeatures / FeatureRendererModel.java
index 553f813..1f69776 100644 (file)
@@ -320,12 +320,12 @@ public abstract class FeatureRendererModel
             visibleTypes);
 
     /*
-     * include features unless their feature group is not displayed, or
-     * they are hidden (have no colour) based on a filter or colour threshold
+     * include features unless they are hidden (have no colour), based on 
+     * feature group visibility, or a filter or colour threshold
      */
     for (SequenceFeature sf : features)
     {
-      if (!featureGroupNotShown(sf) && getColour(sf) != null)
+      if (getColour(sf) != null)
       {
         result.add(sf);
       }