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-03-27 22:28:25 +0400
committerTon Roosendaal <ton@blender.org>2013-03-27 22:28:25 +0400
commitb163256b33605bd27616caefe63de7cca53c9439 (patch)
treeadf1cfbb18c4b926a39cec7d853c08c5bbb71f1f /release
parent1c886435c845fd10f27497f6febc718f75e2e93a (diff)
Node Editor
To complete previous commit: New "Activate same type next/prev" operator - replaces the two not working previous ones. This selects/activates and views the next or previous node of same type. Shortcuts: Shift ] and Shift [
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_node.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_node.py b/release/scripts/startup/bl_ui/space_node.py
index e739c5ea5d4..6e92b55f88c 100644
--- a/release/scripts/startup/bl_ui/space_node.py
+++ b/release/scripts/startup/bl_ui/space_node.py
@@ -152,8 +152,8 @@ class NODE_MT_select(Menu):
layout.operator("node.select_linked_from")
layout.operator("node.select_linked_to")
layout.operator("node.select_same_type")
- layout.operator("node.select_same_type_next")
- layout.operator("node.select_same_type_prev")
+ layout.operator("node.select_same_type_step").prev = True
+ layout.operator("node.select_same_type_step").prev = False
class NODE_MT_node(Menu):