diff --git a/source/blender/editors/space_nla/nla_edit.cc b/source/blender/editors/space_nla/nla_edit.cc index bc5441e54a1..0764387a9aa 100644 --- a/source/blender/editors/space_nla/nla_edit.cc +++ b/source/blender/editors/space_nla/nla_edit.cc @@ -69,6 +69,9 @@ void ED_nla_postop_refresh(bAnimContext *ac) if (!ale->adt) { continue; } + if (ale->type != ANIMTYPE_ANIMDATA) { + continue; + } /* performing auto-blending, extend-mode validation, etc. */ BKE_nla_validate_state(static_cast(ale->data));