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

commits at source.squeak.org commits at source.squeak.org
Tue Apr 14 07:24:47 UTC 2015


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

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

Name: Tools-mt.587
Author: mt
Time: 14 April 2015, 9:24:29.942 am
UUID: 016aa5a8-25f3-6642-92d6-f058b1a78716
Ancestors: Tools-mt.586

Fixed a regression in file contents browser. That browser misuses the system category pane for displaying the file name. Having this, it has to consider the normal use of that list in browsers.

Note: Having '-- all --' in the list of system categories will normally not affect other browsers as we can see in the HierarchBrowser.

Thanks to Chris for pointing out that bug.

=============== Diff against Tools-mt.586 ===============

Item was added:
+ ----- Method: FileContentsBrowser>>systemCategoryList (in category 'system category list') -----
+ systemCategoryList
+ 
+ 	^ self packages size = 1
+ 		ifTrue: [super systemCategoryList allButFirst "without all category"]
+ 		ifFalse: [super systemCategoryList]!



More information about the Squeak-dev mailing list