From d81b442708389e213ff42df364536d018b077e3a Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Wed, 18 Apr 2018 20:13:04 +0200 Subject: [PATCH] Fix layer of MotherlodeOverlay To correctly layour motherlode overlay, change it's layer from ABOVE_WIDGETS to BELOW_WIDGETS (what should be the correct layer for it anyway). Signed-off-by: Tomas Slusny --- .../runelite/client/plugins/motherlode/MotherlodeOverlay.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/motherlode/MotherlodeOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/motherlode/MotherlodeOverlay.java index 595f8ba2c0..b11486926f 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/motherlode/MotherlodeOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/motherlode/MotherlodeOverlay.java @@ -44,7 +44,6 @@ import static net.runelite.api.AnimationID.MINING_MOTHERLODE_RUNE; import static net.runelite.api.AnimationID.MINING_MOTHERLODE_STEEL; import net.runelite.api.Client; import net.runelite.client.ui.overlay.Overlay; -import net.runelite.client.ui.overlay.OverlayLayer; import net.runelite.client.ui.overlay.OverlayPosition; import net.runelite.client.ui.overlay.components.PanelComponent; @@ -66,7 +65,6 @@ class MotherlodeOverlay extends Overlay MotherlodeOverlay(Client client, MotherlodePlugin plugin, MotherlodeConfig config) { setPosition(OverlayPosition.TOP_LEFT); - setLayer(OverlayLayer.ABOVE_SCENE); this.client = client; this.plugin = plugin; this.config = config;