From c1a11439319ee6fd74af3b93176b6f3d7bb53def Mon Sep 17 00:00:00 2001 From: user <user@user-ThinkPad-X60.(none)> Date: Sun, 14 Jun 2015 18:21:06 -0400 Subject: [PATCH] hooked up edit menu z-order items To Back/To Front (even though they don't actually work yet) --- pd/nw/pd_canvas.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pd/nw/pd_canvas.html b/pd/nw/pd_canvas.html index ea60a7f48..4837e79ef 100644 --- a/pd/nw/pd_canvas.html +++ b/pd/nw/pd_canvas.html @@ -664,13 +664,17 @@ function nw_create_patch_window_menus (name) { editMenu.append(new nw.MenuItem({ label: l('menu.tofront'), - click: menu_generic, + click: function() { + pdgui.popup_action(name, 3); + }, tooltip: l('menu.tofront_tt'), })); editMenu.append(new nw.MenuItem({ label: l('menu.toback'), - click: menu_generic, + click: function() { + pdgui.popup_action(name, 4); + }, tooltip: l('menu.toback_tt'), })); -- GitLab