diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/mousehighlight/MouseHighlightConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/mousehighlight/MouseHighlightConfig.java index f2bc35f38c..b3ad77aa9e 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/mousehighlight/MouseHighlightConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/mousehighlight/MouseHighlightConfig.java @@ -64,13 +64,23 @@ public interface MouseHighlightConfig extends Config return true; } - @ConfigItem(position = 3, keyName = "hideSpells", name = "Spellbook", description = "Hides vanilla client tooltips in the spellbook") + @ConfigItem( + position = 3, + keyName = "hideSpells", + name = "Spellbook", + description = "Hides vanilla client tooltips in the spellbook" + ) default boolean shouldHideSpells() { return false; } - @ConfigItem(position = 4, keyName = "hideCombat", name = "Combat", description = "Hides vanilla client tooltips in the combat menu") + @ConfigItem( + position = 4, + keyName = "hideCombat", + name = "Combat", + description = "Hides vanilla client tooltips in the combat menu" + ) default boolean shouldHideCombat() { return false;