Skip to content
Snippets Groups Projects
Commit c1a11439 authored by user's avatar user
Browse files

hooked up edit menu z-order items To Back/To Front (even though they don't actually work yet)

parent 1e20bf92
No related branches found
No related tags found
No related merge requests found
......@@ -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'),
}));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment