<div dir="ltr"><div>Here are the steps I took to trigger what seems to be a bug:</div><div><br></div><div>- evaluate the following in a Workspace:</div><div>  <span style="font-family:monospace">Feature </span>require<span style="font-family:monospace">: 'UI-Layout-Panel'</span><br></div><div>- open the halo for a morph whose owner is the current WorldMorph</div><div>- click the blue Menu button</div><div>- click "edit me"<br></div><div>- modify the Color</div><div>- click the Update button</div><div><br></div><div>That opened a MessageNotUnderstood debug window because WorldMorph does not understand the message layoutSubmorphs. One way to fix this is to modify the updateMasterFromCopy method in LayoutMorphEditPanel and replace this line:</div><div><br></div><div><font face="monospace">original owner ifNotNil: [ :container | container layoutSubmorphs; redrawNeeded ].<br></font></div><div><br></div><div>with this:</div><div><br></div><div><font face="monospace">original owner ifNotNil: [ :container |<br>    container respondsTo: #layoutSubmorphs :: ifTrue: [</font></div><div><font face="monospace">        container layoutSubmorphs; redrawNeeded</font></div><div><font face="monospace">    ]<br>       ].</font><br></div><div><br></div><span class="gmail_signature_prefix">-- </span><br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div><font face="arial, helvetica, sans-serif">R. Mark Volkmann</font></div><div><span style="font-size:12.8000001907349px"><font face="arial, helvetica, sans-serif">Object Computing, Inc.</font></span></div></div></div></div></div></div></div></div></div>