Fix objects not appearing in Outliner after dragging in from Asset Browser

When dragging in an object from an external asset library from the Asset
Browser, the Outliner wouldn't update.
This commit is contained in:
Julian Eisel 2021-10-26 19:55:51 +02:00
parent 4db4a97355
commit 63de6078da
1 changed files with 2 additions and 0 deletions

View File

@ -747,6 +747,8 @@ static void view3d_ob_drop_copy_external_asset(wmDrag *drag, wmDropBox *drop)
ID *id = WM_drag_asset_id_import(asset_drag, FILE_AUTOSELECT);
WM_event_add_notifier(C, NC_SCENE | ND_LAYER_CONTENT, scene);
RNA_string_set(drop->ptr, "name", id->name + 2);
Base *base = BKE_view_layer_base_find(view_layer, (Object *)id);