From 494ffd2f9551b756e782e07d17748063eea04c45 Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Wed, 7 Oct 2020 08:04:53 -0500 Subject: UI: Fix capitalization in various places Follow the MLA style, agreed upon in T79589. This means "from" within UI labels should be lowercase. Differential Revision: https://developer.blender.org/D8345 --- source/blender/editors/uvedit/uvedit_ops.c | 2 +- source/blender/editors/uvedit/uvedit_unwrap_ops.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/uvedit') diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c index d3d8c58829b..5b3d858329a 100644 --- a/source/blender/editors/uvedit/uvedit_ops.c +++ b/source/blender/editors/uvedit/uvedit_ops.c @@ -1902,7 +1902,7 @@ static int uv_seams_from_islands_exec(bContext *C, wmOperator *op) static void UV_OT_seams_from_islands(wmOperatorType *ot) { /* identifiers */ - ot->name = "Seams From Islands"; + ot->name = "Seams from Islands"; ot->description = "Set mesh seams according to island setup in the UV editor"; ot->idname = "UV_OT_seams_from_islands"; diff --git a/source/blender/editors/uvedit/uvedit_unwrap_ops.c b/source/blender/editors/uvedit/uvedit_unwrap_ops.c index e4c0fd86377..cfcef0ebcb9 100644 --- a/source/blender/editors/uvedit/uvedit_unwrap_ops.c +++ b/source/blender/editors/uvedit/uvedit_unwrap_ops.c @@ -2384,7 +2384,7 @@ static bool uv_from_view_poll(bContext *C) void UV_OT_project_from_view(wmOperatorType *ot) { /* identifiers */ - ot->name = "Project From View"; + ot->name = "Project from View"; ot->idname = "UV_OT_project_from_view"; ot->description = "Project the UV vertices of the mesh as seen in current 3D view"; -- cgit v1.2.3