<div dir="ltr">The message list items in ProtocolBrowser and subclasses are Texts that were displayed directly until the formatted message list changes came in in CodeHolder. Now that this is overrridden by the formatting, ProtocolBrowser and friends should be refactored to rely on the formatting methods instead. Also, this makes it possibile to finally use MethodReferences (with a custom stringVersion) there.<br><div><br></div><div>I might attempt this later, but not today...</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Am Sa., 10. Aug. 2019 um 22:53 Uhr schrieb <<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>>:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">A new version of Protocols was added to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/Protocols-jr.66.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/inbox/Protocols-jr.66.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Protocols-jr.66<br>
Author: jr<br>
Time: 10 August 2019, 10:52:44.688208 pm<br>
UUID: d24c7b8e-2920-0a46-9a93-e89755df5ad4<br>
Ancestors: Protocols-jr.65<br>
<br>
Quick fix to highlight messages implemented in the browsed class of a Lexicon again<br>
<br>
=============== Diff against Protocols-jr.65 ===============<br>
<br>
Item was added:<br>
+ ----- Method: Lexicon>>formattedLabel:forSelector:inClass: (in category 'message list') -----<br>
+ formattedLabel: aString forSelector: aSymbol inClass: aClass<br>
+       "Highlight messages implemented in the targetClass in bold print."<br>
+       <br>
+       | formattedLabel |<br>
+       formattedLabel := super formattedLabel: aString forSelector: aSymbol inClass: aClass.<br>
+       aClass = targetClass ifTrue:<br>
+               [formattedLabel := formattedLabel asText.<br>
+               (self userInterfaceTheme ownMessageAttributes ifNil: [{TextEmphasis bold}]) do: [:textAttribute |<br>
+                       formattedLabel addAttribute: textAttribute]].<br>
+ <br>
+       ^ formattedLabel.!<br>
<br>
<br>
</blockquote></div>