diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java | 10 |
1 files changed, 10 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 bbc6caf7d..9a2806f64 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 @@ -82,6 +82,16 @@ public class GraphConfig { public int tutorialKey = Keyboard.KEY_K; @Expose + @ConfigOption(name = "Split Key", desc = "Key for splitting an edge that is between the active and the closed node.") + @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) + public int splitKey = Keyboard.KEY_NONE; + + @Expose + @ConfigOption(name = "Dissolve Key", desc = "Dissolve the active node into one edge if it only has two edges.") + @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) + public int dissolveKey = Keyboard.KEY_NONE; + + @Expose @ConfigLink(owner = GraphConfig.class, field = "enabled") public Position infoDisplay = new Position(20, 20); |