Hi
Look at this example
| view |
view := ViewRenderer new.
view borderedRectangleShape.
view nodes: (0 to: 5).
view edgesFrom: [:each | each // 3].
view treeLayout.
view open
The edge between the node 4 and 1 do not appear.
If you move it the node 4 the edge is there.
Thanks
Mth