From c1d77e197df836166ba8879f3a9dded591714936 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Sat, 11 Jul 2015 22:59:44 -0400
Subject: [PATCH] fixed bug with iemgui base not updating its color correctly

---
 pd/nw/pdgui.js      |  5 +++++
 pd/src/g_all_guis.c | 24 ++++++++++++------------
 2 files changed, 17 insertions(+), 12 deletions(-)

diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js
index 4d10b1078..dd442203b 100644
--- a/pd/nw/pdgui.js
+++ b/pd/nw/pdgui.js
@@ -2716,6 +2716,11 @@ function gui_iemgui_drawborder(cid, tag, bgcolor, x1, y1, x2, y2) {
     g.appendChild(rect);
 }
 
+function gui_iemgui_border_color(cid, tag, color) {
+    var b = get_gobj(cid, tag).querySelector('.border');
+    configure_item(b, { fill: color });
+}
+
 function gui_iemgui_move_and_resize(cid, tag, x1, y1, x2, y2) {
     var gobj = get_gobj(cid, tag);
     var item = gobj.querySelector('.border');
diff --git a/pd/src/g_all_guis.c b/pd/src/g_all_guis.c
index 74ec51fb3..572dbdf61 100644
--- a/pd/src/g_all_guis.c
+++ b/pd/src/g_all_guis.c
@@ -1232,25 +1232,25 @@ void iemgui_base_draw_move(t_iemgui *x) {
         canvas, x, x1, y1, x2, y2);
 }
 
-/* I don't think this is needed anymore */
 void iemgui_base_draw_config(t_iemgui *x) {
-    /*
+    
     t_canvas *canvas=glist_getcanvas(x->x_glist);
     char fcol[8]; sprintf(fcol,"#%6.6x", x->x_fcol);
-    */
+    
     //sys_vgui(".x%lx.c itemconfigure %lxBASE -fill #%6.6x\n", canvas, x, x->x_bcol);
-    /*
+    
     char tagbuf[MAXPDSTRING];
     char bcol[8]; sprintf(bcol, "#%6.6x", x->x_bcol);
     sprintf(tagbuf, "x%lxborder", (long unsigned int)x);
-    gui_start_vmess("gui_configure_item", "xs",
-        canvas, tagbuf);
-    gui_start_array();
-    gui_s("fill");
-    gui_s(bcol);
-    gui_end_array();
-    gui_end_vmess();
-    */
+//    gui_start_vmess("gui_configure_item", "xs",
+//        canvas, tagbuf);
+//    gui_start_array();
+//    gui_s("fill");
+//    gui_s(bcol);
+//    gui_end_array();
+//    gui_end_vmess();
+    gui_vmess("gui_iemgui_border_color", "xxs",
+        canvas, x, bcol); 
 }
 
 void iemgui_draw_update(t_iemgui *x, t_glist *glist) {
-- 
GitLab