From 9867f18f4c5b0f51a6ecc9274152a1fb9d1dedb5 Mon Sep 17 00:00:00 2001 From: Walker Selby Date: Fri, 8 Dec 2023 07:59:28 -0800 Subject: Localize Keypresses (#754) Fixed control/modifier key logic on apple devices. #754 --- .../skyhanni/config/features/inventory/HideNotClickableConfig.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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; -- cgit