Merge branch 'blender-v2.90-release'

This commit is contained in:
Nathan Craddock 2020-07-23 12:50:59 -06:00
commit c049fe7979
1 changed files with 7 additions and 1 deletions

View File

@ -867,11 +867,17 @@ static void id_select_linked_cb(bContext *C,
static void singleuser_action_cb(bContext *C,
ReportList *UNUSED(reports),
Scene *UNUSED(scene),
TreeElement *UNUSED(te),
TreeElement *te,
TreeStoreElem *tsep,
TreeStoreElem *tselem,
void *UNUSED(user_data))
{
/* This callback runs for all selected elements, some of which may not be actions which results
* in a crash. */
if (te->idcode != ID_AC) {
return;
}
ID *id = tselem->id;
if (id) {