[Bf-blender-cvs] [abdda29dab6] blender2.8: Fix: Pose Breakdown operator (continued)

Jacques Lucke noreply at git.blender.org
Mon Oct 29 14:08:35 CET 2018


Commit: abdda29dab68ec31104f3dfe585211ec31ba6c88
Author: Jacques Lucke
Date:   Mon Oct 29 14:07:47 2018 +0100
Branches: blender2.8
https://developer.blender.org/rBabdda29dab68ec31104f3dfe585211ec31ba6c88

Fix: Pose Breakdown operator (continued)

===================================================================

M	source/blender/editors/armature/pose_slide.c

===================================================================

diff --git a/source/blender/editors/armature/pose_slide.c b/source/blender/editors/armature/pose_slide.c
index f8a7a5e670c..bae794e84c4 100644
--- a/source/blender/editors/armature/pose_slide.c
+++ b/source/blender/editors/armature/pose_slide.c
@@ -618,10 +618,10 @@ static void pose_slide_apply(bContext *C, tPoseSlideOp *pso)
 
 			/* apply NLA mapping corrections so the frame lookups work */
 			ob_data->prevFrameF = BKE_nla_tweakedit_remap(ob_data->ob->adt,
-			                                              ob_data->prevFrameF,
+			                                              pso->prevFrame,
 			                                              NLATIME_CONVERT_UNMAP);
 			ob_data->nextFrameF = BKE_nla_tweakedit_remap(ob_data->ob->adt,
-			                                              ob_data->nextFrameF,
+			                                              pso->nextFrame,
 			                                              NLATIME_CONVERT_UNMAP);
 		}
 	}



More information about the Bf-blender-cvs mailing list