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 [
This commit is contained in:
Ton Roosendaal
2013-03-27 18:28:25 +00:00
parent 1c886435c8
commit b163256b33
4 changed files with 12 additions and 73 deletions

View File

@@ -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):