Outliner: add icons for nodegroups

These were missing in "Blender File" view.

before
{F13053175}
after
{F13053176}

Differential Revision: https://developer.blender.org/D14859
This commit is contained in:
Philipp Oeser 2022-05-03 13:37:37 +02:00
parent 6fa5d520b8
commit b968e2bf48
1 changed files with 6 additions and 0 deletions

View File

@ -38,6 +38,7 @@
#include "BKE_library.h"
#include "BKE_main.h"
#include "BKE_modifier.h"
#include "BKE_node.h"
#include "BKE_object.h"
#include "BKE_particle.h"
#include "BKE_report.h"
@ -2504,6 +2505,11 @@ static BIFIconID tree_element_get_icon_from_id(const ID *id)
return ICON_WORKSPACE;
case ID_MSK:
return ICON_MOD_MASK;
case ID_NT: {
const bNodeTree *ntree = (bNodeTree *)id;
const bNodeTreeType *ntreetype = ntree->typeinfo;
return (BIFIconID)ntreetype->ui_icon;
}
case ID_MC:
return ICON_SEQUENCE;
case ID_PC: