Make sure annots are alignment width
[jalview.git] / src / jalview / gui / AnnotationLabels.java
index 0ea7730..a0648c7 100755 (executable)
@@ -380,7 +380,7 @@ public class AnnotationLabels
       {
         desc.append(aa.description+"<br>");
       }
-      if(!Float.isNaN(aa.score))
+      if(aa.hasScore())
       {
         desc.append("Score: "+aa.score);
       }
@@ -643,13 +643,7 @@ public class AnnotationLabels
         }
         else
         {
-          if(aa[i].belowAlignment)
-            g.setColor(Color.ORANGE);
-          else
-            g.setColor(Color.red);
-
           g.drawString(aa[i].label, x, y +offset);
-
         }
       }
     }