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:
And if I change the label adding more numbers, like in 'Class22222', the
result is weirder than before. See image below:
What's wrong? Am I missing something?
I am using Pharo 3.0 with Moose 5.0 image.
Thanks in Advance,
Leonardo