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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-06-05 12:56:46 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-06-05 12:56:46 +0300
commitcd8613c6e7f04a822824742a3c0e21b017955053 (patch)
tree7c5b6e4b7f1a322716bc7506b206cfb840c33a8a /source/blender/editors
parent342dd5a771c2c5a67d9ddcfab14246afd6cae321 (diff)
Fix T55319: Keyframing issues
The issue was that keyframing from menu would tag object for animation update, which was making object to loose unkeyed changes.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/animation/keyingsets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c
index c443c66d0f5..a4204715678 100644
--- a/source/blender/editors/animation/keyingsets.c
+++ b/source/blender/editors/animation/keyingsets.c
@@ -1051,7 +1051,7 @@ int ANIM_apply_keyingset(bContext *C, ListBase *dsources, bAction *act, KeyingSe
Object *ob = (Object *)ksp->id;
// XXX: only object transforms?
- DEG_id_tag_update(&ob->id, OB_RECALC_OB | OB_RECALC_DATA | OB_RECALC_TIME);
+ DEG_id_tag_update(&ob->id, OB_RECALC_OB | OB_RECALC_DATA);
break;
}
default: