UI: Improve DataTransfer Modifier Error Message

Differential Revision: https://developer.blender.org/D7546
This commit is contained in:
Hans Goudey 2020-04-28 15:15:36 -05:00
parent 4d06c1c25b
commit b443e1b7d4
1 changed files with 1 additions and 2 deletions

View File

@ -225,8 +225,7 @@ static Mesh *modifyMesh(ModifierData *md, const ModifierEvalContext *ctx, Mesh *
else if (result->totvert > HIGH_POLY_WARNING ||
((Mesh *)(ob_source->data))->totvert > HIGH_POLY_WARNING) {
modifier_setError(
md,
"You are using a rather high poly as source or destination, computation might be slow");
md, "Source or destination object has a high polygon count, computation might be slow");
}
return result;