Eliot Miranda uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-eem.1003.mcz==================== Summary ====================
Name: Morphic-eem.1003
Author: eem
Time: 2 September 2015, 6:30:31.822 pm
UUID: 6acf30a2-82ed-49ea-b87f-85b16c6be607
Ancestors: Morphic-eem.1002
Remove carriage returns from a time stamp
=============== Diff against Morphic-eem.1002 ===============
Item was changed:
----- Method: MorphicModel>>model: (in category 'initialization') -----
model: anObject
"Set my model and make me me a dependent of the given object."
model ifNotNil: [model removeDependent: self].
anObject ifNotNil: [anObject addDependent: self].
model := anObject.
!