Hi,I'm having problem with roassal rendering rectangles with text:
| view |
view := ROMondrianViewBuilder new.
view shape rectangle withText: 'Hello'.
view node: #1.
view open.
this will generate the shape in wrong_rendering attachement
while I would expect the same rendering as:
| view |
view := ROMondrianViewBuilder new.
view shape rectangle.
view
node: #1
forIt: [
view shape label text: 'Hello'.
view node: #1].
view open
see attachement correct_rendering.png
What I want is a rectangle with a inside label (or a label with borders, depends from the point of view :) ).
Am I misusing roassal shapes or it is a bug?
Using latest Moose.
Fabrizio