From f92e3b39f18a3d3e29873faed98f6279571fbc4f Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Mon, 21 Mar 2022 11:35:17 -0500 Subject: UI: Use title case for labels --- source/blender/editors/armature/pose_slide.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/armature') diff --git a/source/blender/editors/armature/pose_slide.c b/source/blender/editors/armature/pose_slide.c index fb349b78d71..cf04cdba859 100644 --- a/source/blender/editors/armature/pose_slide.c +++ b/source/blender/editors/armature/pose_slide.c @@ -896,7 +896,7 @@ static void pose_slide_draw_status(bContext *C, tPoseSlideOp *pso) strcpy(mode_str, TIP_("Breakdown")); break; case POSESLIDE_BLEND: - strcpy(mode_str, TIP_("Blend To Neighbor")); + strcpy(mode_str, TIP_("Blend to Neighbor")); break; default: @@ -1722,7 +1722,7 @@ static int pose_slide_blend_to_neighbors_exec(bContext *C, wmOperator *op) void POSE_OT_blend_to_neighbors(wmOperatorType *ot) { /* Identifiers. */ - ot->name = "Blend To Neighbor"; + ot->name = "Blend to Neighbor"; ot->idname = "POSE_OT_blend_to_neighbor"; ot->description = "Blend from current position to previous or next keyframe"; -- cgit v1.2.3