From 16121c35b05073144a208f786e4f006497df50bb Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Tue, 26 Sep 2023 19:06:00 +1000 Subject: Hide not clickable items bypass key #504 Adds the ability to bypass not clickable items when holding the control key. --- .../at/hannibal2/skyhanni/config/features/InventoryConfig.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java index 42fabffea..ff2f95a8f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java @@ -42,7 +42,13 @@ public class InventoryConfig { public int hideNotClickableOpacity = 180; @Expose - @ConfigOption(name = "Green line", desc = "Adds green line around items that are clickable.") + @ConfigOption(name = "Bypass With Control", desc = "Adds the ability to bypass not clickable items when holding the control key.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean notClickableItemsBypass = true; + + @Expose + @ConfigOption(name = "Green Line", desc = "Adds green line around items that are clickable.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean hideNotClickableItemsGreenLine = true; -- cgit