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

commits at source.squeak.org commits at source.squeak.org
Wed May 18 12:39:30 UTC 2022


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

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

Name: Tools-mt.1158
Author: mt
Time: 18 May 2022, 2:39:27.281425 pm
UUID: 4013ae1d-5124-3a48-981f-42d18d23809e
Ancestors: Tools-mt.1157

Additon to Tools-mt.1157. Sorry for the noise.

=============== Diff against Tools-mt.1157 ===============

Item was changed:
  ----- Method: Browser>>findClass (in category 'system category functions') -----
  findClass
  	"Search for a class by name."
  
  	| foundClass |
  	(self multiWindowState notNil
  	 or: [self okToChange]) ifFalse:
  		[^self classNotFound].
+ 	foundClass := Project uiManager chooseClassOrTraitFrom: self environment withRecentList: self recentClassListFormatted.
- 	foundClass := Project uiManager chooseClassOrTraitFrom: self environment withRecentList: self recentClassList.
  	foundClass ifNil: [^self classNotFound].
  	(self selectedClass notNil
  	 and: [self multiWindowState notNil
  	 "Can only support multi-window if original window has all the right panes."
  	 and: [self multiWindowState prototype isHierarchy not]]) ifTrue:
  		[(self classList includes: foundClass name)
  			ifTrue: [self multiWindowState copyWindow]
  			ifFalse: [self multiWindowState addNewWindow]].
   	self selectCategoryForClass: foundClass.
  	self selectClass: foundClass!



More information about the Squeak-dev mailing list