<div dir="ltr">I&#39;ve been using MVC. It&#39;s still buggy, but mostly usable. I thought that if someone just used it for a little while, we&#39;d know where most of the worst bugs are.<div><br></div><div>Currently tracking two issues, one with errors occurring after bringing up context menus (haven&#39;t started really digging on that one yet,) and a warning which appears for reasons unknown in the Transcript. This is about the latter.</div><div><br></div><div>Warning: view contents not found.<br></div><div><br></div><div>I spent probably ten minutes sifting through all of the methods containing the string &#39;Warning:&#39; when the whole string didn&#39;t turn up any hits, and I do think I have a lead.</div><div><br></div><div>It looks like the latter issue is occurring in StandardSystemView&gt;&gt;setUpdatablePanesFrom:, but I&#39;m not sure why yet. The method itself seems pretty straightforward, but for some reason, the block temp aPane is ending up nil.</div><div><br></div><div>If I&#39;m reading this right, aPane is assigned the value of sending #subViewSatisfying: to a StandardSystemView (in this case, self,) and the argument seems to be a block specifying a constraint, and I may as well paste in the send.</div><div><br></div><div><div>aPane := self subViewSatisfying:</div><div><span class="" style="white-space:pre">        </span>[:pane | (pane isKindOf: PluggableListView) and: [pane getListSelector == sel]].</div></div><div><br></div><div>This happens right before the nil check, which probably means that the constraint doesn&#39;t match whatever #subViewSatisfying: searches (or #subViewSatisfying: is just borked.)</div><div><br></div><div>View&gt;&gt;#subViewSatisfying: is trivial, and indeed returns nil on no-match. The variable subViews just doesn&#39;t have what the method is looking for. I set a breakpoint in order to learn what was actually in there, but alas: it doesn&#39;t repro when I&#39;m looking, which is more or less an &quot;all stop&quot; for me on this one.<br></div><div><br></div><div>Does anyone know this code well?</div><div><br></div><div>TIA,</div><div><br></div><div>Casey</div><div><br></div></div>