The Trunk: Tools-mt.621.mcz

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

The Trunk: Tools-mt.621.mcz

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

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

Name: Tools-mt.621
Author: mt
Time: 5 May 2015, 3:25:28.303 pm
UUID: 8f0550eb-835e-cd45-986d-16324d4fdad5
Ancestors: Tools-topa.620

Fixes styling in Inspector and Object Explorer.

Thanks to Levente for the idea of #parseAMethod: in Shout styler. :-)

=============== Diff against Tools-topa.620 ===============

Item was added:
+ ----- Method: Inspector>>aboutToStyle: (in category 'styling') -----
+ aboutToStyle: aStyler
+
+ aStyler
+ classOrMetaClass: object class;
+ parseAMethod: false.
+ ^true!

Item was added:
+ ----- Method: ObjectExplorer>>aboutToStyle: (in category 'styling') -----
+ aboutToStyle: aStyler
+
+ aStyler
+ classOrMetaClass: self object class;
+ parseAMethod: false.
+ ^true
+ !

Item was changed:
  ----- Method: ObjectExplorer>>currentSelection: (in category 'accessing') -----
  currentSelection: anObject
 
  self currentSelection == anObject ifTrue: [^ self].
  currentSelection := anObject.
+
+ self changed: #currentSelection.
+ self changed: #style.!
- self changed: #currentSelection.!