Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1429.mcz==================== Summary ====================
Name: Morphic-mt.1429
Author: mt
Time: 14 May 2018, 9:24:54.700483 am
UUID: 2b19986c-dd7d-174c-9e03-4869894dbed8
Ancestors: Morphic-mt.1428
Fixes representation of Text instances in Object Explorer.
=============== Diff against Morphic-mt.1428 ===============
Item was added:
+ ----- Method: Text>>explorerContents (in category '*Morphic-Explorer') -----
+ explorerContents
+
+ ^ (self class allInstVarNames asOrderedCollection withIndexCollect: [:each :index |
+ ObjectExplorerWrapper
+ with: (self instVarAt: index)
+ name: each
+ model: self])!