Fix T90551: Dopesheet displays keyframes differently.

Regression introduced by {rB73b047bcd431}. Missing a check when
converting the file to use LISTBASE_FOREACH.
This commit is contained in:
Jeroen Bakker 2021-08-10 08:42:06 +02:00
parent 692e926b18
commit 128ca8c7f6
Notes: blender-bot 2023-02-14 06:27:47 +01:00
Referenced by issue #90551, Dopesheet displays keyframes other than of the selected bones
1 changed files with 3 additions and 0 deletions

View File

@ -821,6 +821,9 @@ void agroup_to_keylist(AnimData *adt,
if (agrp) {
/* loop through F-Curves */
LISTBASE_FOREACH (FCurve *, fcu, &agrp->channels) {
if (fcu->grp != agrp) {
break;
}
fcurve_to_keylist(adt, fcu, keylist, saction_flag);
}
}