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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-26 15:37:30 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-26 15:37:30 +0300
commitb07db54cadaf4fd3eb73958dd963fc414085d9c0 (patch)
treebe45132f7bc73fd57fc92c289738267ccd0337b5 /source/blender/editors/armature/pose_transform.c
parente56f71d03f1e856b7daec169c12ffc8885f64d43 (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/editors/armature/pose_transform.c')
-rw-r--r--source/blender/editors/armature/pose_transform.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/armature/pose_transform.c b/source/blender/editors/armature/pose_transform.c
index 7229002dcbd..55c9b661074 100644
--- a/source/blender/editors/armature/pose_transform.c
+++ b/source/blender/editors/armature/pose_transform.c
@@ -574,8 +574,8 @@ static bPoseChannel *pose_bone_do_paste(Object *ob,
}
/* only loc rot size
- * - only copies transform info for the pose
- */
+ * - only copies transform info for the pose
+ */
copy_v3_v3(pchan->loc, chan->loc);
copy_v3_v3(pchan->size, chan->size);
pchan->flag = chan->flag;
@@ -674,9 +674,9 @@ static bPoseChannel *pose_bone_do_paste(Object *ob,
if (chan->prop) {
if (pchan->prop) {
/* if we have existing properties on a bone, just copy over the values of
- * matching properties (i.e. ones which will have some impact) on to the
- * target instead of just blinding replacing all [
- */
+ * matching properties (i.e. ones which will have some impact) on to the
+ * target instead of just blinding replacing all [
+ */
IDP_SyncGroupValues(pchan->prop, chan->prop);
}
else {