JAL-2001 drop isSelected(int) in favour of original ‘contains(int)’ method
[jalview.git] / src / jalview / renderer / AnnotationRenderer.java
index 2d84289..75099c2 100644 (file)
@@ -598,7 +598,7 @@ public class AnnotationRenderer
 
               if (columnSelection != null)
               {
-                if (columnSelection.isSelected(column))
+                if (columnSelection.contains(column))
                 {
                   g.fillRect(x * charWidth, y, charWidth, charHeight);
                 }