aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorN.N. <sergi_ll@users.sourceforge.net>2013-10-15 12:14:33 +0000
committerN.N. <sergi_ll@users.sourceforge.net>2013-10-15 12:14:33 +0000
commitf002739c33f7454102bfaeed04efec7c2dc503ee (patch)
tree004e2a6dd8f2262578604732a6372e10f9317737
parent5d555864abf6a6a0d8d218653dbc2906ad956f64 (diff)
use pdsend proc to support Pd >= 0.43HEADsvn2git-headexternals/pdvjtools
svn path=/trunk/externals/pdvjtools/; revision=17221
-rw-r--r--colorgrid/colorgrid.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/colorgrid/colorgrid.c b/colorgrid/colorgrid.c
index bcc41f2..0746ce4 100644
--- a/colorgrid/colorgrid.c
+++ b/colorgrid/colorgrid.c
@@ -1579,12 +1579,14 @@ void colorgrid_setup(void)
sys_gui("global $var_graph_ylines\n");
sys_gui("set cmd [concat $id dialog [eval concat $$var_graph_xlines] [eval concat $$var_graph_ylines] [eval concat $$var_graph_colorgrid] \\;]\n");
// puts stderr $cmd
- sys_gui("pd $cmd\n");
+ //sys_gui("pd $cmd\n");
+ sys_gui("pdsend $cmd\n");
sys_gui("}\n");
sys_gui("proc colorgrid_cancel {id} {\n");
sys_gui("set cmd [concat $id cancel \\;]\n");
// puts stderr $cmd
- sys_gui("pd $cmd\n");
+ //sys_gui("pd $cmd\n");
+ sys_gui("pdsend $cmd\n");
sys_gui("}\n");
sys_gui("proc colorgrid_ok {id} {\n");
sys_gui("colorgrid_apply $id\n");