JAL-3443 findColourInt changes for Overview drawing
[jalview.git] / src / jalview / renderer / OverviewRenderer.java
index 82e89e5..f37b7ec 100644 (file)
@@ -517,7 +517,7 @@ public class OverviewRenderer
   }
 
   /*
-   * Find the RGB value of the colour of a sequence at a specified column position
+   * Returns the RGB value of the colour of a sequence at a specified column position
    * 
    * @param seq
    *          sequence to get colour for
@@ -530,8 +530,8 @@ public class OverviewRenderer
   {
     return (seq == null || icol >= seq.getLength()
             ? resColFinder.gapColourInt
-            : resColFinder.getResidueColour(true, shader, allGroups, seq,
-                    icol, finder).getRGB());
+            : resColFinder.getResidueColourInt(true, shader, allGroups, seq,
+                    icol, finder));
   }
 
   /**