[Bf-blender-cvs] [974dc284761] master: Fix T73699: Unhelpful error message when trying to knife project a manifold object

Aaron Carlisle noreply at git.blender.org
Mon Feb 10 19:38:54 CET 2020


Commit: 974dc284761338da477fc1e4e901b6ad1b82805f
Author: Aaron Carlisle
Date:   Mon Feb 10 13:38:16 2020 -0500
Branches: master
https://developer.blender.org/rB974dc284761338da477fc1e4e901b6ad1b82805f

Fix T73699: Unhelpful error message when trying to knife project a manifold object

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

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



More information about the Bf-blender-cvs mailing list