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
This commit is contained in:
Jacques Lucke
2025-10-16 19:19:40 +02:00
parent 6b0f57facf
commit 7075bbc176

View File

@@ -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);