* Add 3 more operators to the Node menu.

node.join [join selected nodes in a new frame]
node.detach [remove selected nodes from their frame]
node.links_detach [remove all links to selected nodes and try to reconnect neighboring nodes together]

Patch by Philipp Oeser, thanks!
This commit is contained in:
Thomas Dinges 2012-11-04 00:46:26 +00:00
parent 4fe8e5e364
commit 13e7dddebd
1 changed files with 8 additions and 0 deletions

View File

@ -166,11 +166,19 @@ class NODE_MT_node(Menu):
layout.operator("node.delete_reconnect")
layout.separator()
layout.operator("node.join", text="Join in new Frame")
layout.operator("node.detach", text="Remove from Frame")
layout.separator()
layout.operator("node.link_make")
layout.operator("node.link_make", text="Make and Replace Links").replace = True
layout.operator("node.links_cut")
layout.operator("node.links_detach")
layout.separator()
layout.operator("node.group_edit")
layout.operator("node.group_ungroup")
layout.operator("node.group_make")