From 63a69e76b7831a809627b7880774c74184757c73 Mon Sep 17 00:00:00 2001 From: sethtroll Date: Thu, 6 Jul 2017 21:16:07 -0500 Subject: [PATCH] fix for jewelry count widgetBounds --- .../client/plugins/jewelrycount/JewelryCountOverlay.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/jewelrycount/JewelryCountOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/jewelrycount/JewelryCountOverlay.java index 33beaab2ec..23c9c71d21 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/jewelrycount/JewelryCountOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/jewelrycount/JewelryCountOverlay.java @@ -103,8 +103,8 @@ class JewelryCountOverlay extends Overlay Rectangle widgetBounds = widget.getBounds(); //to match inventory text - widgetBounds.x -= -5; - widgetBounds.y -= -1; + widgetBounds.x -= 5; + widgetBounds.y -= 1; renderWidgetText(graphics, widgetBounds, charges.getCharges(), Color.white);