From 7075bbc17618078d7d2be501476319eb46905431 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Thu, 16 Oct 2025 19:19:40 +0200 Subject: [PATCH] Fix #148179: missing node group description in packed asset The asset meta data containing the description was not packed and hence the description was lost. Pull Request: https://projects.blender.org/blender/blender/pulls/148221 --- source/blender/blenkernel/intern/library.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/library.cc b/source/blender/blenkernel/intern/library.cc index 7bbffd5d3f8..776b3f7a591 100644 --- a/source/blender/blenkernel/intern/library.cc +++ b/source/blender/blenkernel/intern/library.cc @@ -574,7 +574,7 @@ static void pack_linked_id(Main &bmain, std::nullopt, nullptr, LIB_ID_COPY_DEFAULT | LIB_ID_COPY_ID_NEW_SET | - LIB_ID_COPY_NO_ANIMDATA); + LIB_ID_COPY_NO_ANIMDATA | LIB_ID_COPY_ASSET_METADATA); id_us_min(packed_id); copied_id_process(linked_id, packed_id);