[Bf-blender-cvs] [536055e1ee0] blender-v2.83-release: remove "Select Linked" from the posemode select menu

Philipp Oeser noreply at git.blender.org
Mon Apr 27 16:13:07 CEST 2020


Commit: 536055e1ee0b238d11a774625b0639e05730cd53
Author: Philipp Oeser
Date:   Mon Apr 27 12:42:16 2020 +0200
Branches: blender-v2.83-release
https://developer.blender.org/rB536055e1ee0b238d11a774625b0639e05730cd53

remove "Select Linked" from the posemode select menu

The operator in its current state is based on mouse position and doesnt
make sense to be called from a menu.
(In fact it should be called 'select_linked_pick' internally and a
separate 'select_linked' should be implemented similar to how "Select
Linked" works for meshes, curves etc -- see D7542 for this)

Note: We had the same thing for particles recently:
rBdd9dfadaac9b: remove "Select Linked" from the particle select and
context menu
rB5ca7c85e105d: Particle editmode: add mouse independent "Select Linked"
operator

Fixes T76071

Maniphest Tasks: T76071

Differential Revision: https://developer.blender.org/D7543

===================================================================

M	release/scripts/startup/bl_ui/space_view3d.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 5d47566d880..c0a786d9658 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1469,7 +1469,6 @@ class VIEW3D_MT_select_pose(Menu):
         layout.separator()
 
         layout.operator("pose.select_constraint_target", text="Constraint Target")
-        layout.operator("pose.select_linked", text="Linked")
 
         layout.separator()



More information about the Bf-blender-cvs mailing list