Fix: Compile error after merge

Introduced by f694ef839d
because it forgot to merge 6b75fe7658.
`seq::for_each_callback` was renamed to `seq::foreach_strip`.
This commit is contained in:
Falk David
2025-10-06 14:36:17 +02:00
parent f2c04f08c4
commit 53fdb46498

View File

@@ -3467,7 +3467,7 @@ static size_t animdata_filter_dopesheet_scene(bAnimContext *ac,
/* Strip modifier node trees. */
if (ed && !(ac->ads->filterflag & ADS_FILTER_NONTREE)) {
VectorSet<ID *> node_trees;
seq::for_each_callback(&ed->seqbase, [&](Strip *strip) {
seq::foreach_strip(&ed->seqbase, [&](Strip *strip) {
seq::foreach_strip_modifier_id(strip, [&](ID *id) {
if (GS(id->name) == ID_NT) {
node_trees.add(id);