Fix T62711: Incorrect motion path update

Reviewers: brecht

Differential Revision: https://developer.blender.org/D4560
This commit is contained in:
Jacques Lucke 2019-03-20 14:20:36 +01:00
parent 52e344a770
commit 91914320ca
Notes: blender-bot 2023-04-19 22:54:54 +02:00
Referenced by issue #62711, Motion Paths: Incorrect update when a keyframe change to other frame and press Update Paths
1 changed files with 3 additions and 0 deletions

View File

@ -376,6 +376,9 @@ static void motionpaths_calc_bake_targets(ListBase *targets, int cframe)
if (BLI_dlrbTree_search_exact(&mpt->keys, compare_ak_cfraPtr, &mframe)) {
mpv->flag |= MOTIONPATH_VERT_KEY;
}
else {
mpv->flag &= ~MOTIONPATH_VERT_KEY;
}
/* Incremental update on evaluated object if possible, for fast updating
* while dragging in transform. */