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:
authorSybren A. Stüvel <sybren@blender.org>2021-11-18 19:38:19 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-11-18 19:52:17 +0300
commit7c4e4d605c5f7390292586131e126e412e443029 (patch)
treec08ca1a0afa8fda139cb4c41ea8fdbf8fce1db28
parent12fc395436520157a98b6f6a07d5154033988bf8 (diff)
Pose Library: clarify apply/blend operator names
The old names had "{verb} Pose Library Pose"; they are now named "{verb} Pose Asset", which is shorter & clearer.
-rw-r--r--source/blender/editors/armature/pose_lib_2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/armature/pose_lib_2.c b/source/blender/editors/armature/pose_lib_2.c
index 002a4f74037..e7cbde0b239 100644
--- a/source/blender/editors/armature/pose_lib_2.c
+++ b/source/blender/editors/armature/pose_lib_2.c
@@ -562,7 +562,7 @@ static bool poselib_blend_poll(bContext *C)
void POSELIB_OT_apply_pose_asset(wmOperatorType *ot)
{
/* Identifiers: */
- ot->name = "Apply Pose Library Pose";
+ ot->name = "Apply Pose Asset";
ot->idname = "POSELIB_OT_apply_pose_asset";
ot->description = "Apply the given Pose Action to the rig";
@@ -595,7 +595,7 @@ void POSELIB_OT_blend_pose_asset(wmOperatorType *ot)
PropertyRNA *prop;
/* Identifiers: */
- ot->name = "Blend Pose Library Pose";
+ ot->name = "Blend Pose Asset";
ot->idname = "POSELIB_OT_blend_pose_asset";
ot->description = "Blend the given Pose Action to the rig";