From d8a175a55ddcd2ec7cd86da4f2fe2d8516144e0e Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Sun, 12 Jul 2015 13:53:30 -0400 Subject: [PATCH] fix regression where new iemguis weren't updating the base color --- pd/nw/pdgui.js | 2 +- pd/src/g_all_guis.c | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index c66463ab8..c020296a9 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -2716,7 +2716,7 @@ function gui_iemgui_drawborder(cid, tag, bgcolor, x1, y1, x2, y2) { g.appendChild(rect); } -function gui_iemgui_border_color(cid, tag, color) { +function gui_iemgui_base_color(cid, tag, color) { var b = get_gobj(cid, tag).querySelector('.border'); configure_item(b, { fill: color }); } diff --git a/pd/src/g_all_guis.c b/pd/src/g_all_guis.c index 572dbdf61..7e6c20718 100644 --- a/pd/src/g_all_guis.c +++ b/pd/src/g_all_guis.c @@ -1219,6 +1219,8 @@ void iemgui_base_draw_new(t_iemgui *x) { colorbuf, 0, x1, y1, x2, y2); + gui_vmess("gui_iemgui_base_color", "xxs", + canvas, x, colorbuf); } void iemgui_base_draw_move(t_iemgui *x) { @@ -1249,7 +1251,7 @@ void iemgui_base_draw_config(t_iemgui *x) { // gui_s(bcol); // gui_end_array(); // gui_end_vmess(); - gui_vmess("gui_iemgui_border_color", "xxs", + gui_vmess("gui_iemgui_base_color", "xxs", canvas, x, bcol); } -- GitLab