JAL-2611 Pre-merge checkin
[jalview.git] / src / jalview / viewmodel / OverviewDimensions.java
index f053a95..36b5e0f 100644 (file)
@@ -250,9 +250,14 @@ public abstract class OverviewDimensions
    *          mouse y position
    * @return true if (x,y) is inside the box
    */
-  protected boolean isPositionInBox(int x, int y)
+  public boolean isPositionInBox(int x, int y)
   {
     return (x > boxX && y > boxY && boxX + x < boxWidth
             && boxY + y < boxHeight);
   }
+
+  public void setMousePosition(int x, int y)
+  {
+
+  }
 }
\ No newline at end of file