From a69b826c52011bfa910bef7b1ea983c8aa5c8ebf Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Fri, 17 Aug 2012 20:42:02 -0400 Subject: [PATCH] fixed stray scalar components that are not properly selected when duplicating an object --- src/g_editor.c | 4 ++-- src/g_scalar.c | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/g_editor.c b/src/g_editor.c index 5565d31d7..2b49bf8db 100644 --- a/src/g_editor.c +++ b/src/g_editor.c @@ -4534,8 +4534,8 @@ static void canvas_duplicate(t_canvas *x) g = g->g_next; while (g) { if (pd_class(&g->g_pd) == canvas_class && ((t_canvas *)g)->gl_isgraph) { - // hack: if any objects are GOPs re-select them, otherwise we may get stray nlets - // due to networked nature between the gui and the engine, so we select + // hack: if any objects are GOPs re-select them, otherwise we may get stray unselected + // objects due to networked nature between the gui and the engine, so we select // it explicitly here once again to prevent that from being a problem gobj_select(g, x, 1); } diff --git a/src/g_scalar.c b/src/g_scalar.c index c2415aa53..893f13502 100644 --- a/src/g_scalar.c +++ b/src/g_scalar.c @@ -363,6 +363,7 @@ static void scalar_vis(t_gobj *z, t_glist *owner, int vis) } if (glist_isselected(owner, &x->sc_gobj)) { + scalar_select(z, owner, 1); scalar_drawselectrect(x, owner, 0); scalar_drawselectrect(x, owner, 1); } -- GitLab