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>2020-03-31 06:39:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-31 07:11:11 +0300
commit0f5c94bbd1709f3942553281460673ba86e715fd (patch)
tree445b312006c37adfe6d2f8f205073ae531eb2024 /release/scripts/startup
parentb555b8dedce058985bfe8c544c8c46ba4821bc1a (diff)
Armature: add Select Linked (Ctrl-L)
This matches select linked for other modes (curve, mesh)
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 2d3b4af4ae5..142175ace51 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1859,6 +1859,10 @@ class VIEW3D_MT_select_edit_armature(Menu):
layout.separator()
+ layout.operator("armature.select_linked", text="Linked")
+
+ layout.separator()
+
props = layout.operator("armature.select_hierarchy", text="Parent")
props.extend = False
props.direction = 'PARENT'