Tiny fix [#21871] Mesh tools, merge, use of "vertices" where only a single vertex has been removed.

This commit is contained in:
2010-04-02 00:27:30 +00:00
parent 485c26578c
commit 248f1380af

View File

@@ -5854,7 +5854,8 @@ static int merge_exec(bContext *C, wmOperator *op)
if(!count)
return OPERATOR_CANCELLED;
BKE_reportf(op->reports, RPT_INFO, "Removed %d vertices.", count);
BKE_reportf(op->reports, RPT_INFO, "Removed %d vert%s.", count, (count==1)?"ex":"ices");
BKE_mesh_end_editmesh(obedit->data, em);