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

commits at source.squeak.org commits at source.squeak.org
Fri Feb 27 13:20:59 UTC 2015


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

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

Name: Tools-mt.534
Author: mt
Time: 27 February 2015, 2:20:38.006 pm
UUID: 32d3e256-db49-0d41-93f1-a9fa25c8d623
Ancestors: Tools-topa.533

Auto-sort message category list in System Browser. Does not affect internal order of categories in class organization. Only a view thing. Makes 'alphabetize' in the menu somewhat obsolete for this column. Saves some mouse clicks.

However, hides insertion order of message categories. Not that important, right? :-)

=============== Diff against Tools-topa.533 ===============

Item was changed:
  ----- Method: Browser>>messageCategoryList (in category 'message category list') -----
  messageCategoryList
  	"Answer the selected category of messages."
  
  	self hasClassSelected
+ 		ifTrue: [^ (Array with: ClassOrganizer allCategory), self classOrMetaClassOrganizer categories sorted]
- 		ifTrue: [^ (Array with: ClassOrganizer allCategory), self classOrMetaClassOrganizer categories]
  		ifFalse: [^ Array new]!



More information about the Squeak-dev mailing list