aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorWalker Selby <git@walkerselby.com>2023-12-08 07:59:28 -0800
committerGitHub <noreply@github.com>2023-12-08 16:59:28 +0100
commit9867f18f4c5b0f51a6ecc9274152a1fb9d1dedb5 (patch)
tree161f9ed28b70bedbec2de3d9a078ea40398c4ec2 /src/main/java/at/hannibal2/skyhanni/config
parentf87b7f68cbbcfd7a940fc4e3888ac94545132543 (diff)
downloadskyhanni-9867f18f4c5b0f51a6ecc9274152a1fb9d1dedb5.tar.gz
skyhanni-9867f18f4c5b0f51a6ecc9274152a1fb9d1dedb5.tar.bz2
skyhanni-9867f18f4c5b0f51a6ecc9274152a1fb9d1dedb5.zip
Localize Keypresses (#754)
Fixed control/modifier key logic on apple devices. #754
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/HideNotClickableConfig.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/HideNotClickableConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/HideNotClickableConfig.java
index 9c0c01602..3ce61c9f8 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/HideNotClickableConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/HideNotClickableConfig.java
@@ -29,9 +29,8 @@ public class HideNotClickableConfig {
minStep = 5
)
public int opacity = 180;
-
@Expose
- @ConfigOption(name = "Bypass With Control", desc = "Adds the ability to bypass not clickable items when holding the control key.")
+ @ConfigOption(name = "Bypass With Key", desc = "Adds the ability to bypass not clickable items when holding the control/command key.")
@ConfigEditorBoolean
public boolean itemsBypass = true;