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:
authorTon Roosendaal <ton@blender.org>2007-01-11 15:13:54 +0300
committerTon Roosendaal <ton@blender.org>2007-01-11 15:13:54 +0300
commita3e0a028cdf2f4e4977627026adb4bc6eb60a50d (patch)
tree849718aaca598d022f53e5ad68da108665ea4cc9 /source/blender/src/header_ipo.c
parent3c578fbe128173c6a86a51baf661841840bb6263 (diff)
bugfix #5683
IpoWindow: trying to assign a action-ipo to a Bone failed if Bone had not yet be included in Action.
Diffstat (limited to 'source/blender/src/header_ipo.c')
-rw-r--r--source/blender/src/header_ipo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/header_ipo.c b/source/blender/src/header_ipo.c
index 9b9650b6e00..3d4172549a7 100644
--- a/source/blender/src/header_ipo.c
+++ b/source/blender/src/header_ipo.c
@@ -111,7 +111,7 @@ void spaceipo_assign_ipo(SpaceIpo *si, Ipo *ipo)
bActionChannel *achan;
if(ob->action) {
- achan= get_action_channel(ob->action, si->actname);
+ achan= verify_action_channel(ob->action, si->actname);
if(achan) {
/* constraint exception */