[squeak-dev] The Trunk: Tools-mt.1157.mcz

commits at source.squeak.org commits at source.squeak.org
Tue May 17 10:04:21 UTC 2022


Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.1157.mcz

==================== Summary ====================

Name: Tools-mt.1157
Author: mt
Time: 17 May 2022, 12:04:18.533268 pm
UUID: 8651f1d9-2491-bd42-985e-684c8cd4b690
Ancestors: Tools-eem.1156

Tweak integration of "recent classes" into "find class" dialog by adding some emphasis.

=============== Diff against Tools-eem.1156 ===============

Item was changed:
  ----- Method: Browser>>recentClassList (in category 'class list') -----
  recentClassList
- 
  	
+ 	^ RecentClasses
+ 		select: [:className | className ~= self selectedClassName and: [Smalltalk hasClassNamed: className]]!
- 	^(RecentClasses reject: [:s | s = self selectedClassName]) select: [:n | Smalltalk hasClassNamed: n]!

Item was added:
+ ----- Method: Browser>>recentClassListFormatted (in category 'class list') -----
+ recentClassListFormatted
+ 	
+ 	^ self recentClassList collect: [:className |
+ 		className asText
+ 			addAttribute: TextEmphasis italic;
+ 			yourself]!



More information about the Squeak-dev mailing list