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:
authorCampbell Barton <ideasman42@gmail.com>2012-08-01 17:28:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-01 17:28:19 +0400
commit179d00fb9cc2a6746c3cc3e31f6573380fc02195 (patch)
treebb157f5e7125d9034771d71203112641de85dda5 /release/scripts
parent507a49add507cb09b4dc264e5d8ac02c1a68bb41 (diff)
make node select_all consistent with other select operators, also add Ctrl+I, select inverse to node space.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_node.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_node.py b/release/scripts/startup/bl_ui/space_node.py
index ccdf44a7dc2..e66d8f70c81 100644
--- a/release/scripts/startup/bl_ui/space_node.py
+++ b/release/scripts/startup/bl_ui/space_node.py
@@ -135,7 +135,8 @@ class NODE_MT_select(Menu):
layout.operator("node.select_border")
layout.separator()
- layout.operator("node.select_all")
+ layout.operator("node.select_all").action = 'TOGGLE'
+ layout.operator("node.select_all", text="Inverse").action = 'INVERT'
layout.operator("node.select_linked_from")
layout.operator("node.select_linked_to")
layout.operator("node.select_same_type")