Comment #4 on issue 830 by alexandr...@gmail.com: ROLabel dynamic text not updating bounds/ROBorder properly http://code.google.com/p/moose-technology/issues/detail?id=830
Fixed in Roassal 1.109.
However, your example will not work. The reason is that in your block provided to #text: you use #bounds. And you should not since #bounds use #text to compute its bounds. It simply loops.
Try with the following example: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | view el | view := ROView new.
el := ROElement new + ROBorder red. el @ RODraggable. el + (ROLabel text: [ :v | v position asString ]).
view add: el.
view open -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=