From 8e82ac50f5aa5b9ea0c7ccfb5026de9e947ba6d7 Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Fri, 19 Jul 2013 10:57:19 -0400 Subject: [PATCH] disabled comment help file in K12 mode --- pd/src/g_editor.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pd/src/g_editor.c b/pd/src/g_editor.c index f14e82705..db625fe04 100644 --- a/pd/src/g_editor.c +++ b/pd/src/g_editor.c @@ -1997,6 +1997,10 @@ static void canvas_rightclick(t_canvas *x, int xpos, int ypos, t_gobj *y_sel) break; } } + // if we are in K12 mode and are requesting popup on comments, bail as we don't want users + // to get into conventional help files + if (sys_k12_mode && y && pd_class(&y->g_pd) == text_class) + return; /* abstractions should only allow for properties inside them otherwise they end-up being dirty without visible notification besides, why would one mess with their properties without -- GitLab