Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1729.mcz==================== Summary ====================
Name: Morphic-mt.1729
Author: mt
Time: 1 March 2021, 5:42:08.604934 pm
UUID: 5bc3cc16-c4ce-bb45-921d-e5ba198cf436
Ancestors: Morphic-mt.1728
Fixes submorph insertion order for layer-specific add-all interface.
=============== Diff against Morphic-mt.1728 ===============
Item was changed:
----- Method: Morph>>addAllMorphsFrontInLayers: (in category 'submorphs - layers') -----
addAllMorphsFrontInLayers: morphs
+ morphs reverseDo: [:morph | self addMorphFrontInLayer: morph].!
- morphs do: [:morph | self addMorphFrontInLayer: morph].!