From 974dc284761338da477fc1e4e901b6ad1b82805f Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Mon, 10 Feb 2020 13:38:16 -0500 Subject: [PATCH] Fix T73699: Unhelpful error message when trying to knife project a manifold object --- source/blender/editors/mesh/editmesh_knife_project.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }