Hi all,
The following code is an example to show the problem I am facing.
| view element |
view := ROView new.
element := (ROElement new size: 20) + ROBorder @ RODraggable.
view add: element + (ROLabel new text: 'Class1').
element := (ROElement new size: 20) + ROBorder @ RODraggable.
view add: element + (ROLabel new text: 'Class2').
ROHorizontalLineLayout new on: view elements.
view open.
The labels do not show 'Class1' and 'Class2' as expected, but only 'Class' and 'Class'. The numbers do not appear. See image below: