The Inbox: Tools-mt.538.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Tools-mt.538.mcz

commits-2
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).
  !