diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-06-20 23:24:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 23:24:51 +0200 |
commit | 9b1894c738a16ec6ce2d59a29f7b85a9b9df9381 (patch) | |
tree | ff928cca75ecd18c9929acf042b8bd15d96d9349 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 9810bf56d8852806a812ba77702b670bcfe91e61 (diff) | |
download | skyhanni-9b1894c738a16ec6ce2d59a29f7b85a9b9df9381.tar.gz skyhanni-9b1894c738a16ec6ce2d59a29f7b85a9b9df9381.tar.bz2 skyhanni-9b1894c738a16ec6ce2d59a29f7b85a9b9df9381.zip |
Backend: Addition to Graph Editor (#2059)
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/dev/GraphConfig.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java index 66bc6f798..8dd606cd3 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java @@ -81,6 +81,10 @@ public class GraphConfig { public Position infoDisplay = new Position(20, 20); @Expose + @ConfigLink(owner = GraphConfig.class, field = "enabled") + public Position namedNodesList = new Position(20, 20); + + @Expose @ConfigOption(name = "Shows Stats", desc = "Show funny extra statistics on save. May lag the game a bit.") @ConfigEditorBoolean public boolean showsStats = true; |