From c50671ab7c22eb6a4b0fde7e0c087ddd929e4803 Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Sun, 7 Apr 2013 23:01:36 -0400 Subject: [PATCH] removed debug output --- pd/src/g_editor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pd/src/g_editor.c b/pd/src/g_editor.c index 5f406e32e..ef0d1cd22 100644 --- a/pd/src/g_editor.c +++ b/pd/src/g_editor.c @@ -2018,14 +2018,14 @@ void canvas_vis(t_canvas *x, t_floatarg f) * so its ok to run it on a canvas that already has a gl_editor. */ if (x->gl_editor && x->gl_havewindow) { /* just put us in front */ - fprintf(stderr,"existing\n"); + //fprintf(stderr,"existing\n"); sys_vgui("raise .x%lx\n", x); sys_vgui("focus .x%lx.c\n", x); sys_vgui("wm deiconify .x%lx\n", x); } else { - fprintf(stderr,"new\n"); + //fprintf(stderr,"new\n"); canvas_create_editor(x); sys_vgui("pdtk_canvas_new .x%lx %d %d +%d+%d %d\n", x, (int)(x->gl_screenx2 - x->gl_screenx1), -- GitLab