<div dir="ltr"><div>Hi</div><div><br></div><div>In the LayoutMorph example7 the size of the SystemWindow object is too large.</div><div><br></div><div>How do I constrain the size of it so that it has the size as required by the morphs it contains?</div><div><br></div><div>This is in recent Cuis 7.5-7635</div><div><br></div><div>Kind regards</div><div>Hannes</div><div><br></div><div>-----------------------------------------------------------------------</div><div>The updated example: It now shows the color given by the hex code but the window size is too large</div><div><br></div><div>       | c colorHexValue colorName r w colorHexValueLabel |<br>  w := SystemWindow new setLabel: 'Color'.<br>      r := LinearLayoutMorph newRow separation: 30 @ 10.<br>    c := LinearLayoutMorph newColumn separation: 20 @ 10.<br> colorHexValue := '#FF00FF'.<br>   colorHexValueLabel := LabelMorph contents: colorHexValue .<br>    colorName := LabelMorph contents: 'magenta'.<br><br>        r addMorph: colorHexValueLabel.<br>       r addMorph: colorName.<br>        c addMorph: (ColoredBoxMorph new color: (Color fromHexString: colorHexValue)).<br>        c addMorph: r.<br>        w addMorph: c .<br>       w openInWorld.<br></div><div> <br></div><div><br></div></div>