From 8f3acabff5b3b66e426d5417450969a1421be2b4 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Fri, 4 Sep 2015 13:52:54 -0400 Subject: [PATCH] use sys_queuegui for scalar_configure --- pd/src/g_scalar.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pd/src/g_scalar.c b/pd/src/g_scalar.c index 1212e79b4..e1c29df76 100644 --- a/pd/src/g_scalar.c +++ b/pd/src/g_scalar.c @@ -549,7 +549,6 @@ void scalar_drawselectrect(t_scalar *x, t_glist *glist, int state) glist_xtopixels(glist, 0); t_float yscale = glist_ytopixels(glist, 1) - glist_ytopixels(glist, 0); -post("xsclae is %g and yscale is %g", xscale, yscale); //sys_vgui(".x%lx.c create prect %d %d %d %d " // "-strokewidth 1 -stroke $pd_colors(selection) " // "-tags {select%lx selected}\n", @@ -795,8 +794,9 @@ static void scalar_group_configure(t_scalar *x, t_glist *owner, } } -void scalar_configure(t_scalar *x, t_glist *owner) +void scalar_doconfigure(t_gobj *xgobj, t_glist *owner) { + t_scalar *x = (t_scalar *)xgobj; int vis = glist_isvisible(owner); if (vis) { @@ -869,6 +869,11 @@ void scalar_configure(t_scalar *x, t_glist *owner) } } +void scalar_configure(t_scalar *x, t_glist *owner) +{ + sys_queuegui(x, owner, scalar_doconfigure); +} + static void scalar_groupvis(t_scalar *x, t_glist *owner, t_template *template, t_glist *gl, t_glist *parent, int vis) { -- GitLab