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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-02-10 21:38:16 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-02-10 21:38:44 +0300
commit974dc284761338da477fc1e4e901b6ad1b82805f (patch)
tree2791583a22783acf874136339fd53ba036ebec76 /source/blender/editors/mesh
parent51b67218ae797dc77b20c467aea3c4918af4cb4d (diff)
Fix T73699: Unhelpful error message when trying to knife project a manifold object
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_knife_project.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}