diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-22 22:56:04 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-22 22:56:04 +0200 |
commit | 046427a9d63814629c3066bb7787d180e4ee204f (patch) | |
tree | 2c5482663d8a730b43b889892e2e3296befe34ec /src/main/java/at/hannibal2/skyhanni/config | |
parent | 14fba29400a41f994f2535dea822bba71b1df338 (diff) | |
download | skyhanni-046427a9d63814629c3066bb7787d180e4ee204f.tar.gz skyhanni-046427a9d63814629c3066bb7787d180e4ee204f.tar.bz2 skyhanni-046427a9d63814629c3066bb7787d180e4ee204f.zip |
Added option to hide the "best crop time" title above the list
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index e764e4adf..241dda99e 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -287,6 +287,15 @@ public class Garden { public boolean cropMilestoneBestCompact = false; @Expose + @ConfigOption( + name = "Hide Title", + desc = "Hides the 'Best Crop Time' line entirely.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 7) + public boolean cropMilestoneBestHideTitle = false; + + + @Expose public Position cropMilestoneNextDisplayPos = new Position(-112, -143, false, true); @Expose |