Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1508.mcz==================== Summary ====================
Name: Morphic-mt.1508
Author: mt
Time: 22 August 2019, 3:43:28.184371 pm
UUID: 8220c6d1-dec2-cd4b-b702-a479874e4ee7
Ancestors: Morphic-mt.1507, Morphic-cmfcmf.1496
Merges Morphic-cmfcmf.1496.
=============== Diff against Morphic-mt.1507 ===============
Item was changed:
----- Method: TextEditor>>yellowButtonDown: (in category 'events') -----
yellowButtonDown: event
"Process a yellow button event. Answer true if the event was handled, false otherwise."
(paragraph attributesAt: event cursorPoint) do:[:attr|
attr menu ifNotNil:[
+ attr menu
+ setInvokingView: self morph editView;
+ popUpEvent: event in: self morph world.
- attr menu openAt: event cursorPoint.
^true]].
^false!