diff options
| author | Jeff Carr <[email protected]> | 2023-05-09 17:48:21 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-05-09 17:48:21 -0500 |
| commit | 706bcef867ff2a26ab62a1e3d668ac441575df62 (patch) | |
| tree | f9655cbf3596de25d7f857a38e983634f2474a4b /debug.go | |
| parent | e45e4212da86283e2f9592f11c08d798dfd39860 (diff) | |
start correctly handling grid placement
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debug.go')
| -rw-r--r-- | debug.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ func (n *Node) Dump() { Indent(b, "id = ", n.id) Indent(b, "Name = ", n.Name) Indent(b, "(X,Y) = ", n.X, n.Y) - Indent(b, "Next (X,Y) = ", n.NextX, n.NextY) + Indent(b, "Next (W,H) = ", n.NextW, n.NextH) if (n.parent == nil) { Indent(b, "parent = nil") |
