diff options
author | Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> | 2024-01-21 09:58:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 09:58:41 +0100 |
commit | 6379632b07f05c47909c4eae787921adbe330886 (patch) | |
tree | 98b12a39b59dbb5adf392cff5c84330dc8c0eb31 /src/main/java/at/hannibal2/skyhanni/config | |
parent | ebeaaa6f51e8d1ef86121a119fae240f2d6d31ae (diff) | |
download | skyhanni-6379632b07f05c47909c4eae787921adbe330886.tar.gz skyhanni-6379632b07f05c47909c4eae787921adbe330886.tar.bz2 skyhanni-6379632b07f05c47909c4eae787921adbe330886.zip |
Feature: Extra Harp Features (#741)
Added Harp GUI Scale and Quick Restart. #741
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/HelperConfig.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/HelperConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/HelperConfig.java index 02c06f39a..936aaf59b 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/HelperConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/HelperConfig.java @@ -14,6 +14,17 @@ public class HelperConfig { public static class HarpConfig { @Expose + @ConfigOption(name = "GUI Scale", desc = "Automatically sets the GUI scale to \"AUTO\" when entering the Harp.") + @ConfigEditorBoolean + public boolean guiScale = false; + + @Expose + @ConfigOption(name = "Quick Restart", desc = "Once you've launched the Harp, quickly hit the close button in the Harp Menu to initiate the selected song.") + @ConfigEditorBoolean + @FeatureToggle + public boolean quickRestart = false; + + @Expose @ConfigOption(name = "Use Keybinds", desc = "In the Harp, press buttons with your number row on the keyboard instead of clicking.") @ConfigEditorBoolean @FeatureToggle |