Doc: update to T73699 fix

It's important to refer to "other selected objects" in this case.
This commit is contained in:
Campbell Barton 2020-02-11 11:29:19 +11:00
parent 7d6c08beb8
commit a66b9490a1
Notes: blender-bot 2024-04-11 14:26:06 +02:00
Referenced by issue #77572, Reference image opacity value doesn't work with Blender 2.83+ (Intel HD 630 with Mesa 20, regression from D6729)
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}
}