From 751ef6d6ec84511cac082f934dd4b94e7545bd81 Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Mon, 31 Aug 2020 17:28:07 -0400 Subject: [PATCH] *reenabled checking for duplicate rtext activation which may be responsible for weird stale objects being created when quickly selecting and deselecting. *small typo fix --- pd/src/g_rtext.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pd/src/g_rtext.c b/pd/src/g_rtext.c index 87a2e4635..feb7090c4 100644 --- a/pd/src/g_rtext.c +++ b/pd/src/g_rtext.c @@ -527,7 +527,7 @@ void rtext_erase(t_rtext *x) // sys_vgui(".x%lx.c delete %s\n", glist_getcanvas(x->x_glist), x->x_tag); } -/* Not needed since the rtext gets erased along with the parent gobj group */ +/* Not needed since the rtext gets displaced along with the parent gobj group */ void rtext_displace(t_rtext *x, int dx, int dy) { //sys_vgui(".x%lx.c move %s %d %d\n", glist_getcanvas(x->x_glist), @@ -565,7 +565,10 @@ void rtext_activate(t_rtext *x, int state) char *tmpbuf; t_glist *glist = x->x_glist; t_canvas *canvas = glist_getcanvas(glist); - //if (state && x->x_active) printf("duplicate rtext_activate\n"); + if (state && x->x_active) { + //fprintf(stderr, "duplicate rtext_activate\n"); + return; + } // the following prevents from selecting all when inside an // object that is already being texted for... please *test* // "fixes" before committing them -- GitLab