[Bf-blender-cvs] [90f01d50484] blender-v2.83-release: Fix select linked in pose mode

Campbell Barton noreply at git.blender.org
Tue Apr 28 10:37:51 CEST 2020


Commit: 90f01d50484c75068851fa11263df60cdbd57f2b
Author: Campbell Barton
Date:   Tue Apr 28 18:35:52 2020 +1000
Branches: blender-v2.83-release
https://developer.blender.org/rB90f01d50484c75068851fa11263df60cdbd57f2b

Fix select linked in pose mode

Only one of child bones would be selected when the bone under the
cursor had multiple children.

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

M	source/blender/editors/armature/pose_select.c

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

diff --git a/source/blender/editors/armature/pose_select.c b/source/blender/editors/armature/pose_select.c
index 8df4f6b7dfc..41ad5433931 100644
--- a/source/blender/editors/armature/pose_select.c
+++ b/source/blender/editors/armature/pose_select.c
@@ -443,7 +443,7 @@ static int pose_select_connected_invoke(bContext *C, wmOperator *op, const wmEve
   }
 
   /* Select children */
-  for (curBone = bone->childbase.first; curBone; curBone = next) {
+  for (curBone = bone->childbase.first; curBone; curBone = curBone->next) {
     selectconnected_posebonechildren(base->object, curBone, extend);
   }



More information about the Bf-blender-cvs mailing list