From c4a8fd9728f78aee400a7f2a57fe693cedc3aac5 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Fri, 25 Dec 2015 23:42:36 -0500 Subject: [PATCH] add "Clear Console" menu item --- pd/nw/index.js | 6 ++++++ pd/nw/locales/en/translation.json | 2 ++ pd/nw/pd_menus.js | 8 +++++++- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/pd/nw/index.js b/pd/nw/index.js index 909ea5575..5554311c1 100644 --- a/pd/nw/index.js +++ b/pd/nw/index.js @@ -455,6 +455,12 @@ function nw_create_pd_window_menus(gui, w) { minit(m.edit.font, { enabled: false }); minit(m.edit.cordinspector, { enabled: false }); } + minit(m.edit.clear_console, { + click: function() { + var container = w.document.getElementById("p1"); + container.textContent = ""; + } + }); minit(m.edit.find, { click: function () { var find_bar = w.document.getElementById("console_find"), diff --git a/pd/nw/locales/en/translation.json b/pd/nw/locales/en/translation.json index 29081589c..8677abdb3 100644 --- a/pd/nw/locales/en/translation.json +++ b/pd/nw/locales/en/translation.json @@ -130,6 +130,8 @@ "find_tt": "Find text in the console output", "tidyup": "Tidy Up", "tidyup_tt": "Line up the selected objects in straight rows and columns", + "clear_console": "Clear Console", + "clear_console_tt": "Clear the Pd Window Console", "tofront": "Bring to Front", "tofront_tt": "Bring the selected object visually in front of all other objects", "toback": "Send to Back", diff --git a/pd/nw/pd_menus.js b/pd/nw/pd_menus.js index 2dda1c36a..9f7b76f76 100644 --- a/pd/nw/pd_menus.js +++ b/pd/nw/pd_menus.js @@ -158,7 +158,13 @@ function create_menu(gui, type) { })); } editMenu.append(new gui.MenuItem({ type: "separator" })); - editMenu.append(new gui.MenuItem({ type: "separator" })); + if (!canvas_menu) { + editMenu.append(m.edit.clear_console = new gui.MenuItem({ + label: l("menu.clear_console"), + tooltip: l("menu.clear_console") + })); + editMenu.append(new gui.MenuItem({ type: "separator" })); + } if (canvas_menu) { editMenu.append(m.edit.tidyup = new gui.MenuItem({ label: l("menu.tidyup"), -- GitLab