[Bf-blender-cvs] [a66b9490a10] master: Doc: update to T73699 fix

Campbell Barton noreply at git.blender.org
Tue Feb 11 03:21:46 CET 2020


Commit: a66b9490a10b114b7d6b7350b06010f98887ca84
Author: Campbell Barton
Date:   Tue Feb 11 11:29:19 2020 +1100
Branches: master
https://developer.blender.org/rBa66b9490a10b114b7d6b7350b06010f98887ca84

Doc: update to T73699 fix

It's important to refer to "other selected objects" in this case.

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

M	source/blender/editors/mesh/editmesh_knife_project.c

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

diff --git a/source/blender/editors/mesh/editmesh_knife_project.c b/source/blender/editors/mesh/editmesh_knife_project.c
index ba760e07b72..2e175cb156c 100644
--- a/source/blender/editors/mesh/editmesh_knife_project.c
+++ b/source/blender/editors/mesh/editmesh_knife_project.c
@@ -153,7 +153,9 @@ static int knifeproject_exec(bContext *C, wmOperator *op)
     return OPERATOR_FINISHED;
   }
   else {
-    BKE_report(op->reports, RPT_ERROR, "Projected object does not have any wire or boundary edges");
+    BKE_report(op->reports,
+               RPT_ERROR,
+               "No other selected objects have wire or boundary edges to use for projection");
     return OPERATOR_CANCELLED;
   }
 }



More information about the Bf-blender-cvs mailing list