Hi,
I just installed latest glamour in a pharo 1.2.
I creating a browser with a magritte presenter, and the magritte component doesn't
fill the panel. This is the code:
buildBrowser
| browser |
browser := GLMTabulator new
title: 'Builder';
row: #navigation;
row: #edition;
yourself.
browser transmit
to: #navigation;
andShow: [ :presenter |
presenter finder
show: [ :eachPresenter |
eachPresenter list
title: [ :each | each asString ];
when: [ :each | each respondsTo: #allParticipants ];
display: #allParticipants.
eachPresenter label
when: [ :each | (each respondsTo: #allParticipants) not ] ] ].
browser transmit
from: #navigation;
to: #edition;
andShow: [ :presenter |
presenter magritte
title: [ :each | each asString ] ].
^browser
A screenshot of the result:
Any idea?
Cheers,
Esteban