* 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!
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")