From 81b5c288b6e83df3d31ccb380e51f85cba4533b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 5 May 2015 10:05:07 +0000 Subject: Fixed 'bang'-method by appending terminating gui-msg sys_vgui() expects the methods to be terminated (usually by '\n', but ';' works as well) properly by the *caller*. svn path=/trunk/externals/hcs/; revision=17465 --- cursor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cursor.c b/cursor.c index c9e6b1c..f88eaed 100644 --- a/cursor.c +++ b/cursor.c @@ -39,7 +39,7 @@ static void cursor_setmethod(t_cursor *x, t_symbol *s, int argc, t_atom *argv) static void cursor_bang(t_cursor *x) { - sys_vgui("pdsend \"%s motion [winfo pointerxy .]\"", + sys_vgui("pdsend \"%s motion [winfo pointerxy .]\";\n", x->receive_symbol->s_name); } -- cgit v1.2.1