Don't avoid drawing lines over groups that we're coming to or from.

This commit is contained in:
Ian Gulliver
2019-07-10 08:27:07 +00:00
parent 01542d67f6
commit 75bc85919c
4 changed files with 10 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ class LayoutNode {
this.graphNode_ = graphNode;
this.nodesByPos_ = nodesByPos;
this.pos = pos;
this.groups = [];
this.groups = new Set();
this.nodesByPos_.set(this.pos, this);
}