diff --git a/pd/nw/dialog_canvas.html b/pd/nw/dialog_canvas.html index f8baeca1393e30fb5f1eb21720c8535f64b6dfe6..b86cf8193ceb5b29e239a011d570f22868be14fa 100644 --- a/pd/nw/dialog_canvas.html +++ b/pd/nw/dialog_canvas.html @@ -554,7 +554,6 @@ function apply() { // If this is a dialog to create a new array // skip the canvas dialog callback if (!new_array_dialog) { - // Note: the "+" casts Boolean to Number gop = +get_input("gop"); hide_name = +get_input("hide_name"); diff --git a/pd/src/g_array.c b/pd/src/g_array.c index 51c5ade95414fcbb07bbd3f160a70f92339ba6e7..ccaaea793f04b78c7e36cc0b98e6e571101d25c5 100644 --- a/pd/src/g_array.c +++ b/pd/src/g_array.c @@ -755,6 +755,7 @@ void garray_arraydialog(t_garray *x, t_symbol *s, int argc, t_atom *argv) x->x_style = style; if (size != a->a_n) { + glist_redraw(x->x_glist); garray_resize_long(x, size); } else @@ -764,16 +765,15 @@ void garray_arraydialog(t_garray *x, t_symbol *s, int argc, t_atom *argv) happened to change it. Let me emphasize-- in order to redraw array labels, we must call a function that redraws not only the _entire_ array and its graph, but also redraws - the parent canvas in which the graph is displayed. There is + the graph in which the array is displayed. There is no interface I can find to just say, "redraw the label". - Worse, Pd redraws a single array at least 3 times, and maybe - even the graph and the containing glist-- it's hard to tell + Worse, Pd redraws a single array at least 3 times-- hard to tell because so much data is sent over the wire that I run out of buffer in my terminal window. These are a side-effect of garray_redraw, as well as the garray_resize branch above. (And - don't forget that the canvas dialog callback probably causes - as many redraws as well.) + don't forget that the canvas dialog callback causes some + of these.) Until the Pd codebase handles redrawing in a sane fashion, without depending on a vast array of side-effects, there's diff --git a/pd/src/g_canvas.h b/pd/src/g_canvas.h index a3b5f7cd5ea4fb2abbaedb51ffd0585e45714320..8de49333ad778574c6f89bcd372aaa5ba7c4da06 100644 --- a/pd/src/g_canvas.h +++ b/pd/src/g_canvas.h @@ -180,7 +180,7 @@ struct _glist struct _glist *gl_owner; /* parent glist, supercanvas, or 0 if none */ int gl_pixwidth; /* width in pixels (on parent, if a graph) */ int gl_pixheight; - t_float gl_x1; /* bounding rectangle in our own coordinates */ + t_float gl_x1; /* bounding rectangle in our own coordinates */ t_float gl_y1; t_float gl_x2; t_float gl_y2; diff --git a/pd/src/g_text.c b/pd/src/g_text.c index 30affd0b9e94957f69f3805a9697ae225166c569..c3068e06dfb39412aca5218f42479ca253bf3789 100644 --- a/pd/src/g_text.c +++ b/pd/src/g_text.c @@ -288,11 +288,14 @@ void canvas_howputnew(t_canvas *x, int *connectp, int *xpixp, int *ypixp, { t_gobj *g, *selected = x->gl_editor->e_selection->sel_what; t_text *t = (t_text *)selected; - // if selected object has not yet been activated we need to recreate it first + // if selected object has not yet been activated we need to + // recreate it first if (pd_class(&t->te_pd) == text_class && t->te_type != T_TEXT) { - glist_noselect(x); // we do this to explicitly activate object - glist_select(x, glist_nth(x, glist_getindex(x, 0)-1)); // then reselect it + // we do this to explicitly activate object... + glist_noselect(x); + // then reselect it + glist_select(x, glist_nth(x, glist_getindex(x, 0)-1)); selected = x->gl_editor->e_selection->sel_what; } for (g = x->gl_list, nobj = 0; g; g = g->g_next, nobj++)