From 6379632b07f05c47909c4eae787921adbe330886 Mon Sep 17 00:00:00 2001 From: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> Date: Sun, 21 Jan 2024 09:58:41 +0100 Subject: Feature: Extra Harp Features (#741) Added Harp GUI Scale and Quick Restart. #741 --- .../config/features/inventory/helper/HelperConfig.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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 @@ -13,6 +13,17 @@ public class HelperConfig { public HarpConfig harp = new HarpConfig(); 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 -- cgit