[squeak-dev] The Trunk: Morphic-mt.1649.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Apr 22 08:46:19 UTC 2020


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

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

Name: Morphic-mt.1649
Author: mt
Time: 22 April 2020, 10:46:13.027214 am
UUID: 6b61e640-ba14-0d47-80af-c926334d4b82
Ancestors: Morphic-mt.1648

Fixes small glitch in text editor's #implementorsOfIt to behave like #sendersOfIt.

=============== Diff against Morphic-mt.1648 ===============

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



More information about the Squeak-dev mailing list