Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2012-11-04 04:46:26 +0400
committerThomas Dinges <blender@dingto.org>2012-11-04 04:46:26 +0400
commit13e7dddebdc1f3cecc3ab185919b5b9ebcbaa2df (patch)
tree2508a41ac6c53b36dacf1180ee8328d72bb57965 /release/scripts/startup/bl_ui/space_node.py
parent4fe8e5e364a318e54a7e5f89f3ef943706292348 (diff)
Node UI:
* 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!
Diffstat (limited to 'release/scripts/startup/bl_ui/space_node.py')
-rw-r--r--release/scripts/startup/bl_ui/space_node.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_node.py b/release/scripts/startup/bl_ui/space_node.py
index 5b7ecbfb618..c46b1c20738 100644
--- a/release/scripts/startup/bl_ui/space_node.py
+++ b/release/scripts/startup/bl_ui/space_node.py
@@ -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")