Fix size of RuneLite minimap dots
The dots are supposed to be size of 4 and not 5. Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
@@ -61,9 +61,9 @@ public class OverlayUtil
|
|||||||
public static void renderMinimapLocation(Graphics2D graphics, Point mini, Color color)
|
public static void renderMinimapLocation(Graphics2D graphics, Point mini, Color color)
|
||||||
{
|
{
|
||||||
graphics.setColor(Color.BLACK);
|
graphics.setColor(Color.BLACK);
|
||||||
graphics.fillOval(mini.getX() - 2, mini.getY() - 2 + 1, 5, 5);
|
graphics.fillOval(mini.getX() - 2, mini.getY() - 2 + 1, 4, 4);
|
||||||
graphics.setColor(color);
|
graphics.setColor(color);
|
||||||
graphics.fillOval(mini.getX() - 2, mini.getY() - 2, 5, 5);
|
graphics.fillOval(mini.getX() - 2, mini.getY() - 2, 4, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void renderTextLocation(Graphics2D graphics, Point txtLoc, String text, Color color)
|
public static void renderTextLocation(Graphics2D graphics, Point txtLoc, String text, Color color)
|
||||||
|
|||||||
Reference in New Issue
Block a user