<div dir="ltr">Hi all,<div><br></div><div>It used to be that you can return a formatted Text from the method designated via the label selector of a pluggable tree. This screenshot is from Squeak 5.2:</div><div><div><img src="cid:ii_k1mteyko0" alt="image.png" width="191" height="79" style="margin-right: 0px;"><br></div></div><div><br></div><div>In Trunk, this is broken. With the same code, the node labels are always unformatted, (except for the highlight color, which is used in ObjectExplorer, for example):</div><div><div><img src="cid:ii_k1mtgut31" alt="image.png" width="191" height="74" style="margin-right: 0px;"><br></div></div><div><br></div><div>In case it was never supposed to work like that, how can I have Text-formatted labels in a pluggable tree in a supported way?</div><div><br></div><div>Kind regards,<br>Jakob</div><div><br></div><div>Code excerpts for reference:</div><div><br></div><div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div>chooserWidgetSpecs: builder<br>   ^ {builder pluggableTreeSpec new<br>   "..."<br>   label: #nodeLabelOf:; "..."<br></div><div><br></div><div>nodeLabelOf: aSquotDiffNode <br>   | title |<br>   title := aSquotDiffNode title.<br>   ^ aSquotDiffNode anyChildNeedsChoice<br>      ifTrue: [(Text fromString: title) allBold; yourself]<br>      ifFalse: [title]<br></div></blockquote></div></div>