aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-02-24 20:11:00 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-02-24 20:11:00 +0100
commit8d684679e1f874b288c90a7c781893567e3f869a (patch)
tree32bad5dec73b11b7932987daee361d6705c09527 /src/main/java/at/hannibal2/skyhanni/config
parent67a7beec68dbc4e818248273679956857a7130a5 (diff)
downloadskyhanni-8d684679e1f874b288c90a7c781893567e3f869a.tar.gz
skyhanni-8d684679e1f874b288c90a7c781893567e3f869a.tar.bz2
skyhanni-8d684679e1f874b288c90a7c781893567e3f869a.zip
Compact Tab List now has toggle tab support.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/CompactTabListConfig.java9
1 files changed, 9 insertions, 0 deletions
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
@@ -16,6 +16,15 @@ public class CompactTabListConfig {
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
public boolean hideAdverts = false;