diff --git a/pd/src/g_graph.c b/pd/src/g_graph.c index dfbf6739ccdca2cbbbbcda8843f715ca114beb4c..8772fb872be9b99d90540d92d1309c9029ce85e9 100644 --- a/pd/src/g_graph.c +++ b/pd/src/g_graph.c @@ -1221,7 +1221,7 @@ void graph_checkgop_rect(t_gobj *z, t_glist *glist, } // check if the gop has array members and if so, - // make its minimum size based on array names size + // make its minimum size based on array name's size t_symbol *arrayname; int cols_tmp = 0; int arrayname_cols = 0; @@ -1240,10 +1240,10 @@ void graph_checkgop_rect(t_gobj *z, t_glist *glist, { int fontwidth = sys_fontwidth(x->gl_font); int fontheight = sys_fontheight(x->gl_font); - if ((arrayname_rows * fontheight - 1) > (*yp2 - *yp1)) - *yp2 = *yp1 + (arrayname_rows * fontheight - 1); - if ((arrayname_cols * fontwidth + 2) > (*xp2 - *xp1)) - *xp2 = *xp1 + (arrayname_cols * fontwidth + 2); + if ((arrayname_rows * fontheight + 4) > (*yp2 - *yp1)) + *yp2 = *yp1 + (arrayname_rows * fontheight + 4); + if ((arrayname_cols * fontwidth + 5) > (*xp2 - *xp1)) + *xp2 = *xp1 + (arrayname_cols * fontwidth + 5); } // failsafe where we cannot have a gop that is smaller than 1x1 pixels