From 7d765eca13cdb6dcc64ba9347a5cd41516f33a2d Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Thu, 1 Nov 2018 15:57:17 +0100 Subject: UI: Rename Copy Material to Others to Copy Material to Selected. "Others" is not clear, "selected" is more descriptive and it follows the convention used in similar operators --- source/blender/editors/render/render_shading.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source') diff --git a/source/blender/editors/render/render_shading.c b/source/blender/editors/render/render_shading.c index 43680107dbd..65c43b4e93c 100644 --- a/source/blender/editors/render/render_shading.c +++ b/source/blender/editors/render/render_shading.c @@ -383,9 +383,9 @@ static int material_slot_copy_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_material_slot_copy(wmOperatorType *ot) { /* identifiers */ - ot->name = "Copy Material to Others"; + ot->name = "Copy Material to Selected"; ot->idname = "OBJECT_OT_material_slot_copy"; - ot->description = "Copies materials to other selected objects"; + ot->description = "Copy material to selected objects"; /* api callbacks */ ot->exec = material_slot_copy_exec; -- cgit v1.2.3