Fix #102529 : deduplicate NodeGroups with assets #104793

Closed
Colin Marmond wants to merge 1 commits from Kdaf/blender:fix-102529-nodegroups-asset-duplicated into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ static void gather_search_items_for_node_groups(const bContext &C,
if (node_group->typeinfo->group_idname != group_node_id) {
continue;
}
if (local_assets.contains(node_group->id.name)) {
if (local_assets.contains(node_group->id.name + 2)) {
continue;
}
if (!nodeGroupPoll(&node_tree, node_group, nullptr)) {