realize-depth #5

Merged
Arye Ramaty merged 43 commits from David-Haver/blender:realize-depth into WIP-realize-depth 2024-03-31 17:22:49 +02:00
Showing only changes of commit 8f015d3bfc - Show all commits

View File

@ -3584,7 +3584,10 @@ static int edbm_remove_doubles_exec(bContext *C, wmOperator *op)
}
}
BKE_reportf(op->reports, RPT_INFO, "Removed %d vertice(s)", count_multi);
BKE_reportf(op->reports,
RPT_INFO,
count_multi == 1 ? "Removed %d vertex" : "Removed %d vertices",
count_multi);
return OPERATOR_FINISHED;
}