lively.next
lively.next copied to clipboard
Workspace output is too big.
Workspace output is too big. It should be smaller.

Yes, this is due to a messed up state of the message morphs. When I find time, I will revise them. Thank you!
@zarp-dev As a quick fix, you could override StatusMessage #fit method in StatusMessageForMorph (lively.halos/markers.js), so that it will aware on all submorphs, not only 'message text' submorph.
fit () {
const minHeight = 35; const minWidth = 100;
this.extent = pt(minWidth, minHeight).maxPt(this.globalBounds().extent());
this.relayout();
}
This should be fixed with the new text rendering.