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:
authorCampbell Barton <ideasman42@gmail.com>2020-02-11 03:29:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-11 03:29:19 +0300
commita66b9490a10b114b7d6b7350b06010f98887ca84 (patch)
treee8de053460ee271b6b3818d8b2c7341d89f70603 /source/blender/editors/mesh
parent7d6c08beb8e0c90ec95242fefde440834ac85488 (diff)
Doc: update to T73699 fix
It's important to refer to "other selected objects" in this case.
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_knife_project.c4
1 files changed, 3 insertions, 1 deletions
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;
}
}