From 62d59a28d431278a938c8610050f1399941cf270 Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@monsoon-hp.(none)>
Date: Sat, 3 Mar 2012 17:41:47 -0500
Subject: [PATCH] removed erroneous displacing of gatom in embedded patches

---
 src/g_text.c | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/g_text.c b/src/g_text.c
index c413fda09..f8fb57f15 100644
--- a/src/g_text.c
+++ b/src/g_text.c
@@ -926,14 +926,18 @@ static void gatom_getwherelabel(t_gatom *x, t_glist *glist, int *xp, int *yp)
 static void gatom_displace(t_gobj *z, t_glist *glist,
     int dx, int dy)
 {
-    t_gatom *x = (t_gatom*)z;
-    text_displace(z, glist, dx, dy);
-    sys_vgui(".x%lx.c move %lx.l %d %d\n", glist_getcanvas(glist), 
-        x, dx, dy);
+	//fprintf(stderr,"gatom_displace\n");
+	t_gatom *x = (t_gatom*)z;
+	text_displace(z, glist, dx, dy);
+	if (glist_isvisible(glist)) {
+		sys_vgui(".x%lx.c move %lx.l %d %d\n", glist_getcanvas(glist), 
+		    x, dx, dy);
+	}
 }
 
 static void gatom_vis(t_gobj *z, t_glist *glist, int vis)
 {
+	//fprintf(stderr,"gatom_vis\n");
     t_gatom *x = (t_gatom*)z;
     text_vis(z, glist, vis);
     if (*x->a_label->s_name)
@@ -958,7 +962,7 @@ static void gatom_vis(t_gobj *z, t_glist *glist, int vis)
 void canvas_atom(t_glist *gl, t_atomtype type,
     t_symbol *s, int argc, t_atom *argv)
 {
-	//fprintf(stderr,"canvas_atom\n");
+	fprintf(stderr,"canvas_atom\n");
     t_gatom *x = (t_gatom *)pd_new(gatom_class);
     t_atom at;
     x->a_text.te_width = 0;                        /* don't know it yet. */
-- 
GitLab