[Bf-blender-cvs] [b443e1b7d4c] master: UI: Improve DataTransfer Modifier Error Message

Hans Goudey noreply at git.blender.org
Tue Apr 28 22:15:44 CEST 2020


Commit: b443e1b7d4cc878d061b5830eaeabb0aa3433157
Author: Hans Goudey
Date:   Tue Apr 28 15:15:36 2020 -0500
Branches: master
https://developer.blender.org/rBb443e1b7d4cc878d061b5830eaeabb0aa3433157

UI: Improve DataTransfer Modifier Error Message

Differential Revision: https://developer.blender.org/D7546

===================================================================

M	source/blender/modifiers/intern/MOD_datatransfer.c

===================================================================

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;



More information about the Bf-blender-cvs mailing list