From ae56ac2cea90c13f0178019560d5badddd80515a Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Fri, 26 Sep 2025 11:11:22 +0200 Subject: [PATCH] UI: Nodes: Indicate packed status in node editor context path Ref: - e6a3328da73e719bae93b496438a7a5e0868119a - 4e4976804e772ec697752fa2ecd2b84c66926c58 --- source/blender/editors/space_node/node_context_path.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/space_node/node_context_path.cc b/source/blender/editors/space_node/node_context_path.cc index 66df55ad924..b97c640c7e1 100644 --- a/source/blender/editors/space_node/node_context_path.cc +++ b/source/blender/editors/space_node/node_context_path.cc @@ -92,7 +92,10 @@ static void context_path_add_node_tree_and_node_groups(const SpaceNode &snode, } int icon = ICON_NODETREE; - if (ID_IS_LINKED(&path_item->nodetree->id)) { + if (ID_IS_PACKED(&path_item->nodetree->id)) { + icon = ICON_PACKAGE; + } + else if (ID_IS_LINKED(&path_item->nodetree->id)) { icon = ICON_LINKED; } else if (ID_IS_ASSET(&path_item->nodetree->id)) {