[squeak-dev] The Inbox: Tools-mt.538.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Mar 2 08:36:44 UTC 2015


Marcel Taeumel uploaded a new version of Tools to project The Inbox:
http://source.squeak.org/inbox/Tools-mt.538.mcz

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

Name: Tools-mt.538
Author: mt
Time: 2 March 2015, 9:36:27.558 am
UUID: 5ca4bf81-d7c0-0e46-ab9a-d5da652f57d3
Ancestors: Tools-topa.537

Fix ObjectCollectionTool: Dropping objects other than method/class now opens object explorer correctly for *that* object (not just "Morph new").

=============== Diff against Tools-topa.537 ===============

Item was changed:
  ----- Method: ObjectCollectionTool>>buildWidgetForObject:then: (in category 'widgets') -----
  buildWidgetForObject: anObject then: actionBlock
  	"Fall-back if nothing more special can be found."
  	
  	actionBlock value: (
  		"Get rid of the system window."
  		Morph new
  			changeProportionalLayout;
  			color: Color transparent;
+ 			addAllMorphs: (ObjectExplorer new explorerFor: anObject) paneMorphs;
- 			addAllMorphs: (ObjectExplorer new explorerFor: Morph new) paneMorphs;
  			yourself).
  !



More information about the Squeak-dev mailing list