From 84b59f02dbd85dc49343cd53271413e52f3ed2ae Mon Sep 17 00:00:00 2001 From: Empa <42304516+ItsEmpa@users.noreply.github.com> Date: Sat, 15 Jun 2024 03:28:16 +0200 Subject: Improvement: Custom Wardrobe Tooltip Keybind (#2078) --- .../inventory/customwardrobe/CustomWardrobeConfig.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/customwardrobe/CustomWardrobeConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/customwardrobe/CustomWardrobeConfig.java index a4ea69bad..fd2a94793 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/customwardrobe/CustomWardrobeConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/customwardrobe/CustomWardrobeConfig.java @@ -4,7 +4,9 @@ import at.hannibal2.skyhanni.config.FeatureToggle; import com.google.gson.annotations.Expose; import io.github.notenoughupdates.moulconfig.annotations.Accordion; import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean; +import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorKeybind; import io.github.notenoughupdates.moulconfig.annotations.ConfigOption; +import org.lwjgl.input.Keyboard; public class CustomWardrobeConfig { @@ -42,6 +44,16 @@ public class CustomWardrobeConfig { @ConfigEditorBoolean public boolean loadingText = true; + @Expose + @ConfigOption(name = "Armor Tooltip Keybind", desc = "Only show the lore of the item hovered when holding a keybind.") + @ConfigEditorBoolean + public boolean showTooltipOnlyKeybind = false; + + @Expose + @ConfigOption(name = "Tooltip Keybind", desc = "Press this key to show the item tooltip.") + @ConfigEditorKeybind(defaultKey = Keyboard.KEY_LSHIFT) + public int tooltipKeybind = Keyboard.KEY_LSHIFT; + @Expose @ConfigOption(name = "Colors", desc = "Change the color settings.") @Accordion -- cgit