[squeak-dev] The Inbox: Morphic-ct.1651.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Apr 26 16:09:27 UTC 2020


Christoph Thiede uploaded a new version of Morphic to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.1651.mcz

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

Name: Morphic-ct.1651
Author: ct
Time: 26 April 2020, 6:09:17.326958 pm
UUID: 74e97e50-024a-4541-a7f7-0677904a8350
Ancestors: Morphic-mt.1650

Completes fix of #traceMessage preference, see Morphic-mt.1650. Now #sendersOfIt works again, too :-)

=============== Diff against Morphic-mt.1650 ===============

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



More information about the Squeak-dev mailing list