Hi,
I'm having a problem updating labels with glamour.
I explain:
I have a browser with a "status line" at the bottom, something like this:
browser := GLMTabulator new
row: #itemDetail;
row: #summary size: 18;
yourself.
then, on #summary:
browser transmit
to: #summary;
andShow: [ :presenter |
presenter label
updateOn: AnAnnouncement from: [self announcer ];
display: [ self summary ] ].
but the summary is never updated :(
I'm doing something wrong, or this is a bug? (if I change #label for #text, it is
updated properly).
Also... dynamicActions shouldn't be updated, on a presentation update? Now I'm
using some "status buttons" (it changes an overlay depending on status), and of
course, I would like to update it when something changes... how can I do that?
best,
Esteban