Pd 0.45-1 is up on the usual - http://crca.ucsd.edu/~msp/software.html
or:
git clone git://git.code.sf.net/p/pure-data/pure-data cd pure-data git checkout -b 0.45
Fixes a small but very annoying bug (backspaces in properties dialogs were erasing the object!)
cheers Miller
Pd-announce mailing list Pd-announce@iem.at http://lists.puredata.info/listinfo/pd-announce
On Wed, 2013-08-28 at 13:15 -0700, Miller Puckette wrote:
Pd 0.45-1 is up on the usual - http://crca.ucsd.edu/~msp/software.html
Menu 'Window' -> 'Parent Window' is broken. When used, the following error is printed:
error: canvas: no method for 'findparent' verbose(4): ... you might be able to track this down from the Find menu.
This is not new to 0.45.1, but has probably been there since all 0.45 versions.
Roman
On 08/29/13 19:52, Roman Haefeli wrote:
error: canvas: no method for 'findparent' verbose(4): ... you might be able to track this down from the Find menu.
confirmed on Debian.
it seems that the "canvas_editor_for_class()"-function that adds the "findparent" method is not called for the "canvas" class (only for "array" and "scalar").
fgmadsr IOhannes
Yep... although I made a simpler change (about to commit it...)
--- a/src/g_editor.c +++ b/src/g_editor.c @@ -2821,6 +2821,8 @@ void g_editor_setup(void) gensym("find"), A_SYMBOL, A_FLOAT, A_NULL); class_addmethod(canvas_class, (t_method)canvas_find_again, gensym("findagain"), A_NULL);
gensym("findparent"), A_NULL);
class_addmethod(canvas_class, (t_method)canvas_done_popup,
gensym("done-popup"), A_FLOAT, A_FLOAT, A_FLOAT, A_NULL);
class_addmethod(canvas_class, (t_method)canvas_donecanvasdialog,