<div dir="ltr"><div>ObjectExplorer will fail to open a yellow button menu if you explore values that change while you are exploring them.</div><div><br></div><div>The method updateInspectorSelection uses assert: to check if objects are the same as in a inspector, which they are not because they have changed in the background.</div><div><br></div><div>I think this should be fixed before we release.</div><div><br></div><div>ObjectExplorer&gt;&gt;updateInspectorForSelection </div><div><span class="" style="white-space:pre">        </span>&quot;Reuse the inspector for some callbacks.&quot;</div><div><span class="" style="white-space:pre">        </span></div><div><span class="" style="white-space:pre">        </span>self inspector inspect: (self parentObject ifNil: [self object]).</div><div><br></div><div><span class="" style="white-space:pre">        </span>self parentObject</div><div><span class="" style="white-space:pre">                </span>ifNil: [self inspector toggleIndex: 1. &quot;self&quot;]</div><div><span class="" style="white-space:pre">                </span>ifNotNil: [</div><div><span class="" style="white-space:pre">                        </span>self inspector toggleIndex: (self inspector fieldList indexOf: self currentSelection key)].</div><div><span class="" style="white-space:pre">        </span>self assert: self inspector selection == self object.</div><div><br></div><div>Karl</div></div>