Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gavrilov <angavrilov@gmail.com>2019-05-16 09:47:57 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2019-05-16 09:48:46 +0300
commit65199828766afff21b1a1741fd5a7d651d92f17d (patch)
treeaa3a5f22e83b421044706162ce35d6fc4d92836b /source/blender/editors/space_action/action_edit.c
parente097845a6fab925a364b029c7b709db2b46176e1 (diff)
Fix T64681: evaluate curves with generative modifiers and no keys.
Introduce a new function and use it everywhere, including automatic curve deletion checks to guarantee consistency.
Diffstat (limited to 'source/blender/editors/space_action/action_edit.c')
-rw-r--r--source/blender/editors/space_action/action_edit.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index d8ed25c86d3..7fc84db3f75 100644
--- a/source/blender/editors/space_action/action_edit.c
+++ b/source/blender/editors/space_action/action_edit.c
@@ -979,8 +979,7 @@ static bool delete_action_keys(bAnimContext *ac)
changed = delete_fcurve_keys(fcu);
/* Only delete curve too if it won't be doing anything anymore */
- if ((fcu->totvert == 0) &&
- (list_has_suitable_fmodifier(&fcu->modifiers, 0, FMI_TYPE_GENERATE_CURVE) == 0)) {
+ if (BKE_fcurve_is_empty(fcu)) {
ANIM_fcurve_delete_from_animdata(ac, adt, fcu);
ale->key_data = NULL;
}