Fix clipboard copying collections when copying objects from 3DView.

This was inherited from 2.7x behavior with groups, but in 2.8
collections are also used as 2.7x layers, which turns to be a problem
when pasting back clipboard content, since it would instantiate
collections instead of objects, quickly leading to tens of new
collections in the viewlayer...

Instead, we only copy selected objects from the 3DView now. On paste
time, those will be added to the active collection.

Last part of fixes related to T61670.
This commit is contained in:
Bastien Montagne 2019-03-21 09:42:49 +01:00
parent b346a7c0df
commit 8314c3188c
1 changed files with 0 additions and 13 deletions

View File

@ -75,19 +75,6 @@ static int view3d_copybuffer_exec(bContext *C, wmOperator *op)
}
CTX_DATA_END;
for (Collection *collection = bmain->collections.first; collection; collection = collection->id.next) {
for (CollectionObject *cob = collection->gobject.first; cob; cob = cob->next) {
Object *object = cob->ob;
if (object && (object->id.tag & LIB_TAG_DOIT)) {
BKE_copybuffer_tag_ID(&collection->id);
/* don't expand out to all other objects */
collection->id.tag &= ~LIB_TAG_NEED_EXPAND;
break;
}
}
}
BLI_make_file_string("/", str, BKE_tempdir_base(), "copybuffer.blend");
BKE_copybuffer_save(bmain, str, op->reports);