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:
-rw-r--r--source/blender/editors/armature/pose_transform.c10
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c11
2 files changed, 7 insertions, 14 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 {
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index b97857ab7b9..51c668ed43c 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -3871,15 +3871,8 @@ void MESH_OT_knife_cut(wmOperatorType *ot)
RNA_def_enum(ot->srna, "type", knife_items, KNIFE_EXACT, "Type", "");
/* internal */
- RNA_def_int(ot->srna,
- "cursor",
- WM_CURSOR_KNIFE,
- 0,
- WM_CURSOR_NUM,
- "Cursor",
- "",
- 0,
- WM_CURSOR_NUM);
+ RNA_def_int(
+ ot->srna, "cursor", WM_CURSOR_KNIFE, 0, WM_CURSOR_NUM, "Cursor", "", 0, WM_CURSOR_NUM);
}
/** \} */