'From Squeakland 3.8.5976 of 25 August 2004 [latest update: #378] on 31 December 2004 at 2:11:11 am'! "Change Set: balloonCenter-wiz Date: 31 December 2004 Author: Jerome Peace Fix for Mantis bug 783: Balloon Morph text goes outside of balloons when lots of text. Large balloons such as that for the trash can are not centered in the balloon. adjustedCenter tried to fudge it. This fix returns the original center of the textMorph within the balloon by selecting the vertices that represent the morphs corners and finding their center. A perfect fit every time."! !BalloonMorph methodsFor: 'menus' stamp: 'wiz 12/30/2004 17:14'! adjustedCenter "Return the center of the original textMorph box within the balloon." ^ (self vertices last: 4) average rounded ! !