Fix #113346: Append/Link fails if no name is specified #113350

Merged
Harley Acheson merged 1 commits from lichtwerk/blender:113346 into blender-v4.0-release 2023-10-09 18:29:59 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ static int wm_link_append_exec(bContext *C, wmOperator *op)
BKE_reportf(op->reports, RPT_ERROR, "'%s': cannot use current file as library", filepath);
return OPERATOR_CANCELLED;
}
if (!group || !name) {
if (!group) {
BKE_reportf(op->reports, RPT_ERROR, "'%s': nothing indicated", filepath);
return OPERATOR_CANCELLED;
}