[Pkg] The Trunk: Morphic-eem.1400.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 15 02:10:39 UTC 2018


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!



More information about the Packages mailing list