Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2020-04-28 23:15:36 +0300
committerHans Goudey <h.goudey@me.com>2020-04-28 23:15:36 +0300
commitb443e1b7d4cc878d061b5830eaeabb0aa3433157 (patch)
tree0c29e39992d50e547bd119de67caed300c99c225 /source/blender/modifiers/intern/MOD_datatransfer.c
parent4d06c1c25bd1e6503b7b6730f23501c97bb2a4fb (diff)
UI: Improve DataTransfer Modifier Error Message
Differential Revision: https://developer.blender.org/D7546
Diffstat (limited to 'source/blender/modifiers/intern/MOD_datatransfer.c')
-rw-r--r--source/blender/modifiers/intern/MOD_datatransfer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_datatransfer.c b/source/blender/modifiers/intern/MOD_datatransfer.c
index 49492200021..b54d5fed390 100644
--- a/source/blender/modifiers/intern/MOD_datatransfer.c
+++ b/source/blender/modifiers/intern/MOD_datatransfer.c
@@ -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;