Eliot Miranda uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-eem.1400.mcz==================== Summary ====================
Name: Morphic-eem.1400
Author: eem
Time: 14 March 2018, 7:10:14.547591 pm
UUID: d4a50144-3d70-4ec6-95d4-5be59d2c0fbb
Ancestors: Morphic-mt.1399
Senders of userString such as Morph>>allStringsAfter: allow for the possibility of userString being nil. Indeed click on the background during new release image configuration and this will occur. So make TextMorph>>userString answer nil if it has no text as yet.
=============== Diff against Morphic-mt.1399 ===============
Item was changed:
----- Method: TextMorph>>userString (in category 'accessing') -----
userString
"Do I have a text string to be searched on?"
+ ^text ifNotNil: [:txt| txt string]!
- ^ text string!