Fix select linked in pose mode

Only one of child bones would be selected when the bone under the
cursor had multiple children.
This commit is contained in:
Campbell Barton 2020-04-28 18:35:52 +10:00
parent 64e242244d
commit 90f01d5048
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}