Status: New
Owner: ----
CC: alexandr...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Mondrian Milestone-4.4
New issue 574 by tudor.gi...(a)gmail.com: Nodes with complex shapes do not
position the children nodes with complex shapes properly
http://code.google.com/p/moose-technology/issues/detail?id=574
Another issue related to complex shapes. Try the following code:
view shape umlClass.
view node: 'hello' forIt: [
view shape umlClass.
view nodes: (1 to: 5).
view verticalLineLayout
]
You will see that the children now move properly with the parent node, but
they are not positioned correctly. However, it works well with simple
shapes for the children.
A more complex example can be seen below:
view shape umlClass.
view node: 'hello' forIt: [
view shape umlClass.
view nodes: (1 to: 5) forEach: [:each |
view shape umlClass.
view nodes: (1 to: each ).
view verticalLineLayout ].
view verticalLineLayout
]