Hi,
When adding status bar to Glamour browsers in Pharo 4.0, the contained
presentations overlap the top elements of container. Here's a little script
to reproduce this problem (see attached screenshot).
Status bar does not seem to have changed, surely the layout frames of the
container browser or the presentations are not handled correctly. I tried
to dig the problem but could not get to its cause.
regards.
usman
| browser |
browser := GLMTabulator withStatusbar.
browser column: #one.
browser transmit to: #one; andShow: [:a |
a text
display: 'something wrong with my browsers layout';
title: 'Tab'.
a text
display: 'something wrong with my browsers layout';
title: 'Tab' ].
browser openOn: 1
[image: Inline image 3]