A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.1675.mcz==================== Summary ====================
Name: Morphic-ct.1675
Author: ct
Time: 20 August 2020, 6:38:23.443941 pm
UUID: b76420e2-369c-7547-89c9-e553ffc4aa7c
Ancestors: Morphic-mt.1674
Proposal to fix unreliable text dragging into text morphs as described in
http://forum.world.st/BUG-Text-drag-and-drop-to-workspace-unreliable-td5109035.html=============== Diff against Morphic-mt.1674 ===============
Item was added:
+ ----- Method: PluggableTextMorph>>handleDropMorph: (in category 'dropping/grabbing') -----
+ handleDropMorph: anEvent
+
+ "Give TextMorphForEditView another chance to handle the drop. It did not get any chance before if it is smaller than ourselves."
+ textMorph handleDropMorph: anEvent.
+
+ "If the event has been handled now, super will ignore it."
+ ^ super handleDropMorph: anEvent!