Fix: NLA Blend Domain Enable All Typo

Introduced by my recent commit: rBc48360c2559a

Accidentally used 4 instead of `necs->length`.
This commit is contained in:
Wayde Moss 2021-02-17 01:06:41 -05:00
parent 2da0f3e523
commit 17dddc9417
Notes: blender-bot 2023-02-14 08:33:26 +01:00
Referenced by issue #85741, node editor: Texture preview refresh with cursor selection
1 changed files with 1 additions and 1 deletions

View File

@ -2491,7 +2491,7 @@ void nlasnapshot_enable_all_blend_domain(NlaEvalSnapshot *snapshot)
continue;
}
BLI_bitmap_set_all(necs->blend_domain.ptr, true, 4);
BLI_bitmap_set_all(necs->blend_domain.ptr, true, necs->length);
}
}