summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-04-28 16:08:14 +0200
committerGitHub <noreply@github.com>2024-04-28 16:08:14 +0200
commitae9482ca94504e809c8effa02530fa4697845542 (patch)
treea2d7c782a1ca9f6016313d545e9964576d673dc3 /src/main/java/at/hannibal2/skyhanni/config
parent48f4e9818c5d8a5445b02384f49bbe5c82f8d16e (diff)
downloadskyhanni-ae9482ca94504e809c8effa02530fa4697845542.tar.gz
skyhanni-ae9482ca94504e809c8effa02530fa4697845542.tar.bz2
skyhanni-ae9482ca94504e809c8effa02530fa4697845542.zip
Feature: Added Tooltip Move (#1581)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/event/ChocolateFactoryConfig.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/ChocolateFactoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/ChocolateFactoryConfig.java
index 99d4b5862..2a0d47892 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/event/ChocolateFactoryConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/ChocolateFactoryConfig.java
@@ -108,4 +108,14 @@ public class ChocolateFactoryConfig {
@ConfigOption(name = "Always Compact", desc = "Always Compact the item toolip on the chocolate. Requires the above option to be enabled.")
@ConfigEditorBoolean
public boolean compactOnClickAlways = false;
+
+ @Expose
+ @ConfigOption(name = "Tooltip Move", desc = "Move Tooltip away from the item you hover over while inside the Chocolate Factory.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean tooltipMove = false;
+
+ @Expose
+ @ConfigLink(owner = ChocolateFactoryConfig.class, field = "tooltipMove")
+ public Position tooltipMovePosition = new Position(-380, 150, false, true);
}