Object: move collection resync after empty duplicate early-out

As pointed out in rB02b1a209be88 comment, the BKE_main_collection_sync
should be after "nothing to duplicate" early-out.
This commit is contained in:
Aras Pranckevicius 2022-08-02 21:01:09 +03:00
parent efe0e2b183
commit ead8260a49
1 changed files with 3 additions and 2 deletions

View File

@ -3715,14 +3715,15 @@ static int duplicate_exec(bContext *C, wmOperator *op)
}
}
CTX_DATA_END;
/* Sync the collection now, after everything is duplicated. */
BKE_layer_collection_resync_allow();
BKE_main_collection_sync(bmain);
if (source_bases_new_objects.is_empty()) {
return OPERATOR_CANCELLED;
}
/* Sync the collection now, after everything is duplicated. */
BKE_main_collection_sync(bmain);
/* After sync we can get to the new Base data, process it here. */
for (const auto &item : source_bases_new_objects) {
Object *ob_new = item.second;