diff --git a/src/g_editor.c b/src/g_editor.c index bf13840c75daba961df2b4891a30ba6486df2053..080914819a516d780963bc8d123bc250aaa73554 100644 --- a/src/g_editor.c +++ b/src/g_editor.c @@ -4795,7 +4795,8 @@ static void canvas_dofont(t_canvas *x, t_floatarg font, t_floatarg xresize, gobj_getrect(y, x, &x1, &y1, &x2, &y2); nx1 = x1 * xresize + 0.5; ny1 = y1 * yresize + 0.5; - gobj_displace(y, x, nx1-x1, ny1-y1); + if (pd_class(&y->g_pd) != scalar_class) + gobj_displace(y, x, nx1-x1, ny1-y1); } } if (glist_isvisible(x)) diff --git a/src/g_graph.c b/src/g_graph.c index 1272bac57b6485eb1ca2fbc4f1fd857839601389..1f8918c75722e99110e87a0d53b65778e8cd63a3 100644 --- a/src/g_graph.c +++ b/src/g_graph.c @@ -698,7 +698,7 @@ void glist_redraw(t_glist *x) if (glist_isvisible(x)) { /* LATER fix the graph_vis() code to handle both cases */ - if (glist_istoplevel(x)) + if (glist_istoplevel(x) && x->gl_havewindow) { t_gobj *g; t_linetraverser t; @@ -1029,7 +1029,7 @@ static void graph_getrect(t_gobj *z, t_glist *glist, { /* don't do this for arrays, just let them hang outside the box. */ - if (pd_class(&g->g_pd) == garray_class) + if (pd_class(&g->g_pd) == garray_class || pd_class(&g->g_pd) == scalar_class) continue; gobj_getrect(g, x, &x21, &y21, &x22, &y22); if (x22 > x2)