<div dir="ltr"><div dir="ltr">Hi Folks!<div><font face="monospace"><br></font></div></div><div dir="ltr">In the following example I create a layout and add two 100x100 morphs.</div><div dir="ltr"><br></div><div dir="ltr">When I check their bounds in the owner, they seem to "overlap": notice the y=100 coordinate is shared by both morphs (one ends where the next one starts), even though they are not rendered overlapped.</div><div dir="ltr"><br></div><div dir="ltr"><font face="monospace">layout := LayoutMorph newColumn<br> addMorph: (BoxMorph new morphExtent: 100@100);<br>        addMorph: (BoxMorph new morphExtent: 100@100).<br><br>layout layoutSubmorphs.<br><br>layout submorphs second fullBoundsInOwner. <span style="background-color:rgb(255,255,0)">0@0 corner: 100@100</span><br>layout submorphs first fullBoundsInOwner. <span style="background-color:rgb(255,255,0)">0@100 corner: 100@200</span></font></div><div dir="ltr"><font face="monospace"><span style="background-color:rgb(255,255,0)"><br></span></font></div>I found this while trying to find which morph was at the 0@100 local position inside the layout.<div><br></div><div>Does this mean that <span style="font-family:monospace">fullBoundsInOwner</span>does not include the end<span style="font-family:monospace">?</span></div><div><span style="font-family:monospace"><br></span></div>Cheers,<br>Nico PM</div>