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

This commit is contained in:
2020-02-10 13:38:16 -05:00
parent 51b67218ae
commit 974dc28476

View File

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