Status: New
Owner: ----
CC: alexandr...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Mondrian Milestone-4.7
New issue 798 by tudor.gi...(a)gmail.com: Mondrian should store edges in the
most specific parent of the from/to nodes
http://code.google.com/p/moose-technology/issues/detail?id=798
The edges should be stored in the most specific parent of the from and to
nodes, and not in the parent of the node in which they are defined.
This is because the layout takes this information into account. For
example, the below layout does not show a tree inside node 1.
view := MOViewRenderer new.
view node: 1 forIt: [
view shape label.
view nodes: (10 to: 11).
view treeLayout.
].
view edgesFromAssociations: {10 -> 11}.
view open.