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:
authorDalai Felinto <dfelinto@gmail.com>2012-07-24 11:08:33 +0400
committerDalai Felinto <dfelinto@gmail.com>2012-07-24 11:08:33 +0400
commit752e14ce1585938335a218f1b6ea7cd489d0bf4a (patch)
tree467c96cf4a7ff2a4160a2163ad3d133cf6d19313 /source/blender/blenkernel/intern/ipo.c
parent603842fad43f722fb7632888629a0b263c7a9df0 (diff)
no need for renaming actions that are not linked anywhere
talked with Joshua Leung (aligorith) and he agreed on that
Diffstat (limited to 'source/blender/blenkernel/intern/ipo.c')
-rw-r--r--source/blender/blenkernel/intern/ipo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/ipo.c b/source/blender/blenkernel/intern/ipo.c
index 2fe567cc9bf..8de9640eb35 100644
--- a/source/blender/blenkernel/intern/ipo.c
+++ b/source/blender/blenkernel/intern/ipo.c
@@ -2094,7 +2094,7 @@ void do_versions_ipos_to_animato(Main *main)
bAction *new_act;
/* add a new action for this, and convert all data into that action */
- new_act = add_empty_action("ConvIPO_Action"); // XXX need a better name...
+ new_act = add_empty_action(id->name+2);
ipo_to_animato(NULL, ipo, NULL, NULL, NULL, NULL, &new_act->curves, &drivers);
new_act->idroot = ipo->blocktype;
}