<div dir="ltr">Hi Hilaire,<br><div> the change set number 4922 changes the behavior of the HoverHelpMorph. </div><div> I use it in LiveTyping to show the types of variables, returns, etc. </div><div> Before that change set, the types were shown in a line, for example:</div><div> < Morph # InnerListMorph | HandMorph | WidgetMorph > </div><div> </div><div> With the change, the width of the hover help is much smaller and it shows something like this:</div><div><div> < Morph # InnerListMorph </div><div>| HandMorph </div><div>| WidgetMorph > </div><br class="gmail-Apple-interchange-newline"></div><div> Why did you make that change? I do not understand why if the contents does not includes a line feed you are limiting the width to 300... the strings I'm using do not have a line feed. The code is bellow.</div><div><br></div><div>contents: aString<br>   | width |<br>     contents _ aString.<br>   width _ (contents includes: Character lf)<br>             ifTrue: [9999999] ifFalse: [300].<br>     textComposition _ TextComposition new.<br>        textComposition<br>               setModel: (TextModel withText: contents asText);<br>              extentForComposing:     width@9999999.<br>        textComposition composeAll.<br>   self morphExtent: textComposition usedExtent + 8</div><div><br></div><div>Thanks!</div><div>Hernan.<br><br></div></div>