From 28b0256f12bd1652ad0dfc743c08208746c6e829 Mon Sep 17 00:00:00 2001 From: Mathieu L Bouchard <matju@artengine.ca> Date: Wed, 13 Aug 2014 15:41:02 -0400 Subject: [PATCH] simplify the rtext tags --- pd/src/g_rtext.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pd/src/g_rtext.c b/pd/src/g_rtext.c index fbc166ba1..a907a5df9 100644 --- a/pd/src/g_rtext.c +++ b/pd/src/g_rtext.c @@ -51,7 +51,7 @@ struct _rtext int x_drawnheight; t_text *x_text; t_glist *x_glist; - char x_tag[50]; + char x_tag[20]; struct _rtext *x_next; }; @@ -66,8 +66,7 @@ t_rtext *rtext_new(t_glist *glist, t_text *who) x->x_drawnwidth = x->x_drawnheight = 0; binbuf_gettext(who->te_binbuf, &x->x_buf, &x->x_bufsize); glist->gl_editor->e_rtext = x; - sprintf(x->x_tag, ".x%lx.t%lx", (t_int)glist_getcanvas(x->x_glist), - (t_int)x); + sprintf(x->x_tag, "x%lx", (long)who); return (x); } -- GitLab