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:
Diffstat (limited to 'source/blender/src/editaction.c')
-rw-r--r--source/blender/src/editaction.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index 9dcb7f68363..76fc21b13e6 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -1333,9 +1333,9 @@ void insertkey_action(void)
IpoCurve *icu= (IpoCurve *)ale->key_data;
if (ob)
- insertkey((ID *)ob, icu->blocktype, achan->name, NULL, icu->adrcode);
+ insertkey((ID *)ob, icu->blocktype, achan->name, NULL, icu->adrcode, 0);
else
- insert_vert_icu(icu, cfra, icu->curval);
+ insert_vert_icu(icu, cfra, icu->curval, 0);
}
}
@@ -1352,7 +1352,7 @@ void insertkey_action(void)
if (key->ipo) {
for (icu= key->ipo->curve.first; icu; icu=icu->next) {
- insert_vert_icu(icu, cfra, icu->curval);
+ insert_vert_icu(icu, cfra, icu->curval, 0);
}
}
}