From 8d684679e1f874b288c90a7c781893567e3f869a Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 24 Feb 2024 20:11:00 +0100 Subject: Compact Tab List now has toggle tab support. --- .../features/misc/compacttablist/CompactTabListConfig.java | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/CompactTabListConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/CompactTabListConfig.java index 4d5530ea3..92db866a3 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/CompactTabListConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/CompactTabListConfig.java @@ -15,6 +15,15 @@ public class CompactTabListConfig { @FeatureToggle public boolean enabled = false; + @Expose + @ConfigOption( + name = "Toggle Tab", + desc = "Use the tab key to toggle the tab list, not show tab list while the key is pressed. " + + "Similar to patcher's feature." + ) + @ConfigEditorBoolean + public boolean toggleTab = false; + @Expose @ConfigOption(name = "Hide Hypixel Adverts", desc = "Hides text from advertising the Hypixel server or store in the tablist.") @ConfigEditorBoolean -- cgit