The Trunk: Morphic-mt.1650.mcz

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

The Trunk: Morphic-mt.1650.mcz

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

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

Name: Morphic-mt.1650
Author: mt
Time: 26 April 2020, 4:32:03.107807 pm
UUID: 95ace312-f82d-344a-b874-af727eb37a41
Ancestors: Morphic-mt.1649

Fixes oversight from last commit to make TraceMessages work again. See: http://forum.world.st/The-Trunk-Morphic-mt-1649-mcz-tp5115336.html

=============== Diff against Morphic-mt.1649 ===============

Item was changed:
  ----- Method: TextEditor>>implementorsOfIt (in category 'menu messages') -----
  implementorsOfIt
  "Open an implementors browser on the selected selector"
 
  self lineSelectAndEmptyCheck: [^ self].
  self selectedSelector ifNotNil:
+ [:aSelector| ^self model browseAllImplementorsOf: aSelector].
- [:aSelector| ^self systemNavigation browseAllImplementorsOf: aSelector].
  self selectedLiteral ifNotNil:
+ [:aLiteral| ^self model browseAllImplementorsOf: aLiteral].
- [:aLiteral| ^self systemNavigation browseAllImplementorsOf: aLiteral].
  morph flash.!