diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-01-22 19:46:57 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-01-22 19:46:57 +0100 |
commit | 7c0c1b2935b7edaabd5efa12ef23ede0365c1d5b (patch) | |
tree | 56368862648a7788c55cdf4abf5035c70671aa46 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 8a255ddfcaec09ce31f12c7412f889b34e209768 (diff) | |
download | skyhanni-7c0c1b2935b7edaabd5efa12ef23ede0365c1d5b.tar.gz skyhanni-7c0c1b2935b7edaabd5efa12ef23ede0365c1d5b.tar.bz2 skyhanni-7c0c1b2935b7edaabd5efa12ef23ede0365c1d5b.zip |
Adding green line around items that are clickable.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java index 175dcb42d..61b11da6c 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java @@ -32,6 +32,12 @@ public class Inventory { @ConfigAccordionId(id = 0) public int hideNotClickableOpacity = 180; + @Expose + @ConfigOption(name = "Green line", desc = "Adds green line around items that are clickable.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean hideNotClickableItemsGreenLine = true; + @ConfigOption(name = "RNG Meter", desc = "") @ConfigEditorAccordion(id = 1) public boolean rngMeter = false; |