diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-03 17:07:30 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-03 17:07:30 +0200 |
commit | 55aee2c8793c03cf3ba8539535c83897d694ee60 (patch) | |
tree | b0d85e2bf7bf7a83bb9baf067ec1c8337b207d95 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 4aa469feee9592c6c7ded467216c77f5839e7f2e (diff) | |
download | skyhanni-55aee2c8793c03cf3ba8539535c83897d694ee60.tar.gz skyhanni-55aee2c8793c03cf3ba8539535c83897d694ee60.tar.bz2 skyhanni-55aee2c8793c03cf3ba8539535c83897d694ee60.zip |
Added option to only show the reputation helper while pressing a hotkey.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java index e04404ed8..a1741affb 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -112,6 +112,19 @@ public class MiscConfig { public boolean crimsonIsleReputationHelper = true; @Expose + @ConfigOption(name = "Use Hotkey", desc = "Only show the reputation helper while pressing the hotkey.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 6) + public boolean reputationHelperUseHotkey = false; + + @Expose + @ConfigOption(name = "Hotkey", desc = "Press this hotkey to show the reputation helper.") + @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) + @ConfigAccordionId(id = 6) + public int reputationHelperHotkey = Keyboard.KEY_NONE; + + + @Expose public Position crimsonIsleReputationHelperPos = new Position(10, 10, false, true); @Expose |