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/blenkernel/intern/armature.c')
-rw-r--r--source/blender/blenkernel/intern/armature.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c
index 64b3c9f7ca6..914bce67c52 100644
--- a/source/blender/blenkernel/intern/armature.c
+++ b/source/blender/blenkernel/intern/armature.c
@@ -1069,7 +1069,6 @@ void where_is_pose (Object *ob)
Bone *bone;
bPoseChannel *pchan, *next;
float imat[4][4];
-// float ctime= (float)G.scene->r.cfra; /* time only applies constraint location on curve path (now) */
arm = get_armature(ob);
@@ -1077,10 +1076,8 @@ void where_is_pose (Object *ob)
if(ob->pose==NULL || (ob->pose->flag & POSE_RECALC))
armature_rebuild_pose(ob, arm);
-// printf("re-evaluate pose %s\n", ob->id.name);
-
/* In restposition we read the data from the bones */
- if(arm->flag & ARM_RESTPOS) {
+ if(ob==G.obedit || (arm->flag & ARM_RESTPOS)) {
for(pchan= ob->pose->chanbase.first; pchan; pchan= pchan->next) {
bone= pchan->bone;