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:
authorCampbell Barton <ideasman42@gmail.com>2013-10-01 17:28:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-10-01 17:28:59 +0400
commit9883641f46ebf4a9db407f125903a45ea617464e (patch)
treec5705d9e93d85a77396f1b84568bdf135cb9de0b /source/blender/editors/armature/armature_naming.c
parent4c3d9e358be04b6b2d8979ae9ef59e4b86f3bf13 (diff)
add assert for bone renaming, to check if the chanhash is still valid.
Diffstat (limited to 'source/blender/editors/armature/armature_naming.c')
-rw-r--r--source/blender/editors/armature/armature_naming.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/armature/armature_naming.c b/source/blender/editors/armature/armature_naming.c
index 98128404977..60f5e69621f 100644
--- a/source/blender/editors/armature/armature_naming.c
+++ b/source/blender/editors/armature/armature_naming.c
@@ -192,6 +192,8 @@ void ED_armature_bone_rename(bArmature *arm, const char *oldnamep, const char *n
BLI_ghash_insert(gh, pchan->name, pchan);
}
}
+
+ BLI_assert(BKE_pose_channels_is_valid(ob->pose) == true);
}
/* Update any object constraints to use the new bone name */