On Wed, 29 Jun 2011 12:29:34 -0500 Kent Tenney <[email protected]> wrote:
> I do Plugins -> active_path -> about > > then rclick -> "remove 1 right" and get: > > hook failed: idle, <bound method ViewRenderedController.update of > <leo.plugins.viewrendered.ViewRenderedController instance at > 0x37f5170>>, leo.plugins.scrolledmessage Yes, but I haven't pushed my refactor of the viewrendered / free_layout interaction, so that's a legitimate case of the C++ object being deleted because no one told viewrendered its window was closed. But your earlier mention of "remove 1 right" pushed me back into the code one more time and I've fixed the problem in the persistence branch - woohoo. Seems 4.8 required a widget to be constructed with a parent where 4.7 didn't - don't really see why as the widget was immediately inserted into the parent and I'm sure that sets the parent relationship. And apparently 'not w' works as expected in 4.7, but 4.8 requires 'w is None' because bool(w) is evaluating false in 4.8 where it didn't in 4.7. So, when I finish removing debugging code perhaps you can test this branch Kent? I'll let you know when it's on lp. Cheers -Terry -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/leo-editor?hl=en.
