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:
authorJoshua Leung <aligorith@gmail.com>2009-06-24 05:04:01 +0400
committerJoshua Leung <aligorith@gmail.com>2009-06-24 05:04:01 +0400
commit0336c2e7f5df2b104532a04161b3924870567ab3 (patch)
tree739e4821bf60cc22527085ca083805668781dc3e /source/blender/editors/space_action
parentb4acd77526f32faab0c3d86436eef56096985c3d (diff)
NLA SoC: Fixing a few cases where the wrong flags got used in last night's commit
Diffstat (limited to 'source/blender/editors/space_action')
-rw-r--r--source/blender/editors/space_action/action_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index 272ef3222ce..70dbc42fe6e 100644
--- a/source/blender/editors/space_action/action_edit.c
+++ b/source/blender/editors/space_action/action_edit.c
@@ -406,7 +406,7 @@ static void insert_action_keys(bAnimContext *ac, short mode)
/* adjust current frame for NLA-scaling */
if (adt)
- cfra= BKE_nla_tweakedit_remap(adt, (float)CFRA, 1);
+ cfra= BKE_nla_tweakedit_remap(adt, (float)CFRA, 0);
else
cfra= (float)CFRA;