The Inbox: Morphic-ct.1651.mcz

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

The Inbox: Morphic-ct.1651.mcz

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