From f0ec2753793abbc4aca51ebc806d6e29c89e488b Mon Sep 17 00:00:00 2001
From: Mathieu L Bouchard <matju@artengine.ca>
Date: Mon, 11 Aug 2014 20:10:33 -0400
Subject: [PATCH] fix bug in drawing iemgui_base with labels & gop (introduced
 by refac #6)

---
 pd/src/g_all_guis.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/pd/src/g_all_guis.c b/pd/src/g_all_guis.c
index 1db98d77a..b62371ee2 100644
--- a/pd/src/g_all_guis.c
+++ b/pd/src/g_all_guis.c
@@ -1029,8 +1029,9 @@ void iemgui_io_draw_move(t_iemgui *x, t_glist *canvas, const char *nlet_tag) {
 
 void iemgui_base_draw_new(t_iemgui *x, t_glist *canvas, const char *nlet_tag) {
     t_class *c = pd_class((t_pd *)x);
-    int x1,y1,x2,y2;
+    int x1,y1,x2,y2,gr=gop_redraw; gop_redraw=0;
     c->c_wb->w_getrectfn((t_gobj *)x,x->x_glist,&x1,&y1,&x2,&y2);
+    gop_redraw=gr;
     sys_vgui(".x%lx.c create prect %d %d %d %d "
              "-stroke $pd_colors(iemgui_border) -fill #%6.6x "
              "-tags {%lxBASE %lxOBJ text iemgui border %s}\n",
@@ -1039,8 +1040,9 @@ void iemgui_base_draw_new(t_iemgui *x, t_glist *canvas, const char *nlet_tag) {
 
 void iemgui_base_draw_move(t_iemgui *x, t_glist *canvas, const char *nlet_tag) {
     t_class *c = pd_class((t_pd *)x);
-    int x1,y1,x2,y2;
+    int x1,y1,x2,y2,gr=gop_redraw; gop_redraw=0;
     c->c_wb->w_getrectfn((t_gobj *)x,x->x_glist,&x1,&y1,&x2,&y2);
+    gop_redraw=gr;
     sys_vgui(".x%lx.c coords %lxBASE %d %d %d %d\n", canvas, x, x1, y1, x2, y2);
 }
 
-- 
GitLab