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-09-20 05:36:11 +0400
committerJoshua Leung <aligorith@gmail.com>2009-09-20 05:36:11 +0400
commitf4b9ec0e37d636c974f4ea24c90d288015df7d24 (patch)
tree402dec6b5be8672a93346b8128fc0b38d38a2960 /source/blender/editors/armature
parentb28109b442f5e87edf865c6bcbdb8f53665cdef5 (diff)
2.5 - 2 Armature Related Crash Fixes
* #19397: Properties panel (transform panel in 3D-View) crashed when there was no active posechannel. * Breakdown/Push/Relax Pose tools crashed when auto-keyframing was enabled. There where 2 main causes here: 1) laziness to try and avoid having to clear some data everytime, 2) a typo for one of the KeyingSet names
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/poseSlide.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/editors/armature/poseSlide.c b/source/blender/editors/armature/poseSlide.c
index e55c5608112..eb290b1f83c 100644
--- a/source/blender/editors/armature/poseSlide.c
+++ b/source/blender/editors/armature/poseSlide.c
@@ -219,7 +219,7 @@ static int pose_slide_init (bContext *C, wmOperator *op, short mode)
/* get builtin KeyingSets */
pso->ks_loc= ANIM_builtin_keyingset_get_named(NULL, "Location");
pso->ks_rot= ANIM_builtin_keyingset_get_named(NULL, "Rotation");
- pso->ks_scale= ANIM_builtin_keyingset_get_named(NULL, "Scale");
+ pso->ks_scale= ANIM_builtin_keyingset_get_named(NULL, "Scaling");
/* return status is whether we've got all the data we were requested to get */
return 1;
@@ -393,8 +393,7 @@ static void pose_slide_autoKeyframe (bContext *C, tPoseSlideOp *pso, bPoseChanne
ListBase dsources = {&cks, &cks};
/* init common-key-source for use by KeyingSets */
- // TODO: for now, we don't clear it out, since it should be safe to do so...
- //memset(&cks, 0, sizeof(bCommonKeySrc));
+ memset(&cks, 0, sizeof(bCommonKeySrc));
cks.id= &pso->ob->id;
/* init cks for this PoseChannel, then use the relative KeyingSets to keyframe it */