From c6b4350cb96f3a4f142b3005cc989c78c8e941cd Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@vt.edu>
Date: Wed, 20 Aug 2014 11:10:14 -0400
Subject: [PATCH] *fixed another regression where label colors were not being
 updated

---
 pd/src/g_all_guis.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pd/src/g_all_guis.c b/pd/src/g_all_guis.c
index 27d0c3ae8..f6b53ac3b 100644
--- a/pd/src/g_all_guis.c
+++ b/pd/src/g_all_guis.c
@@ -470,7 +470,10 @@ void iemgui_color(t_iemgui *x, t_symbol *s, int ac, t_atom *av)
     else
         x->x_lcol = iemgui_compatible_col(atom_getintarg(1, ac, av));
     if(glist_isvisible(x->x_glist))
+    {
         x->x_draw(x, x->x_glist, IEM_GUI_DRAW_MODE_CONFIG);
+        iemgui_label_draw_config(x);
+    }
 }
 
 void iemgui_displace(t_gobj *z, t_glist *glist, int dx, int dy)
-- 
GitLab