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:
authorTon Roosendaal <ton@blender.org>2013-04-01 19:07:22 +0400
committerTon Roosendaal <ton@blender.org>2013-04-01 19:07:22 +0400
commitc35dec60b5e54e4b1b7c6fbb0f17a3b1f0f86012 (patch)
treeab990bbf9a03d72359b1fdb6040c73fe2ad954f8 /release/scripts/startup/bl_ui/space_node.py
parent03c337f61c64fb8ddb7e244047344e83c0dd4bda (diff)
Node editing feature:
New operator "Find Node". Opens search menu, and allows to find a node based on name or label. On selecting name, menu selects/activates the node and moves the view to it. Shortcut: ALT+F Menu: Node editor, "Select"
Diffstat (limited to 'release/scripts/startup/bl_ui/space_node.py')
-rw-r--r--release/scripts/startup/bl_ui/space_node.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_node.py b/release/scripts/startup/bl_ui/space_node.py
index 26c76bd6655..ac76b988e05 100644
--- a/release/scripts/startup/bl_ui/space_node.py
+++ b/release/scripts/startup/bl_ui/space_node.py
@@ -151,10 +151,17 @@ class NODE_MT_select(Menu):
layout.operator("node.select_all", text="Inverse").action = 'INVERT'
layout.operator("node.select_linked_from")
layout.operator("node.select_linked_to")
+
+ layout.separator()
+
layout.operator("node.select_same_type")
layout.operator("node.select_same_type_step").prev = True
layout.operator("node.select_same_type_step").prev = False
+ layout.separator()
+
+ layout.operator("node.find_node")
+
class NODE_MT_node(Menu):
bl_label = "Node"