Status: New Owner: ---- CC: alexandr...@gmail.com Labels: Type-Defect Priority-Medium Component-Roassal Milestone-4.7
New issue 897 by tu...@tudorgirba.com: Roassal line layout does not work when stretched http://code.google.com/p/moose-technology/issues/detail?id=897
Try this: view nodes: #(1 2 3) . view horizontalLineLayout stretch
We need this to work for the class blueprint
Comment #1 on issue 897 by tu...@tudorgirba.com: Roassal line layout does not work when stretched http://code.google.com/p/moose-technology/issues/detail?id=897
The problem is that the layout was just copied from Mondrian, but the input is no longer the parent graph, but only a list of elements. This is a bit problematic.
Updates: Labels: -Milestone-4.7 Milestone-4.8
Comment #2 on issue 897 by tu...@tudorgirba.com: Roassal line layout does not work when stretched http://code.google.com/p/moose-technology/issues/detail?id=897
(No comment was entered for this change.)
Comment #3 on issue 897 by alexandr...@gmail.com: Roassal line layout does not work when stretched http://code.google.com/p/moose-technology/issues/detail?id=897
I will have time to work on this in March. Until this month I have ecoop reviews, and february is holidays in Chile
Comment #4 on issue 897 by tu...@tudorgirba.com: Roassal line layout does not work when stretched http://code.google.com/p/moose-technology/issues/detail?id=897
This does not throw an error anymore, but it does not seem to be working either.
Try this: view shape rectangle height: 300. view node: #a forIt: [ view nodes: #(1 2 3) ]. view horizontalLineLayout stretch
Updates: Labels: -Milestone-4.8
Comment #5 on issue 897 by tu...@tudorgirba.com: Roassal line layout does not work when stretched http://code.google.com/p/moose-technology/issues/detail?id=897
I guess this won't make it for 4.8
Comment #6 on issue 897 by alexandr...@gmail.com: Roassal line layout does not work when stretched http://code.google.com/p/moose-technology/issues/detail?id=897
Thanks for raising this point again. We are working on it.
Comment #7 on issue 897 by Juraj.Ku...@gmail.com: Roassal line layout does not work when stretched http://code.google.com/p/moose-technology/issues/detail?id=897
I think it works. The reported example is wrong. It should be like this:
view shape rectangle height: 300. view node: #a forIt: [ view nodes: #(1 2 3). view horizontalLineLayout stretch. ].
Or even better:
view extensibleSizeWithPaddingGap: 0. view shape rectangle height: 300. view node: #a forIt: [ view nodes: #(1 2 3). view horizontalLineLayout stretch gapSize: 0. ].
Updates: Status: Fixed Labels: Milestone-4.8
Comment #8 on issue 897 by tu...@tudorgirba.com: Roassal line layout does not work when stretched http://code.google.com/p/moose-technology/issues/detail?id=897
Thanks!