JAL-2808 don't capture or report min-max for mixed text/numeric attribute
[jalview.git] / src / jalview / gui / FeatureTypeSettings.java
index 89c693f..e13f6ee 100644 (file)
@@ -1551,7 +1551,7 @@ public class FeatureTypeSettings extends JalviewDialog
     condCombo.removeAllItems();
     for (Condition c : Condition.values())
     {
-      if ((c.isNumeric() && type != Datatype.Character)
+      if ((c.isNumeric() && type == Datatype.Number)
               || (!c.isNumeric() && type != Datatype.Number))
       {
         condCombo.addItem(c);