Status: New
Owner: alexandr...(a)gmail.com
Labels: Type-Defect Priority-Critical Component-Roassal
New issue 827 by alexandr...(a)gmail.com: Strange popupView in Roassal
http://code.google.com/p/moose-technology/issues/detail?id=827
The popupView: behaves oddly. Consider the following script:
| view |
view := ROMondrianViewBuilder new.
view interaction popupView: [ :el :myView |
myView shape rectangle fillColor: Color yellow.
myView node: 20 forIt: [
myView shape rectangle fillColor: Color blue.
myView node: 30
].
myView horizontalLineLayout.
myView applyLayout
].
view shape rectangle size: 40.
view node: 10.
view open