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
This commit is contained in:
Pablo Vazquez 2018-11-01 15:57:17 +01:00
parent 423e887c74
commit 7d765eca13
Notes: blender-bot 2023-02-13 19:39:53 +01:00
Referenced by issue #85419, Material slots menu: copy material and copy to selected work different
1 changed files with 2 additions and 2 deletions

View File

@ -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;