From 879805647fa48eeb314a99ffb4b516acea598a26 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Thu, 30 May 2024 09:58:15 +0200 Subject: [PATCH] fill container data --- client/ayon_core/tools/sceneinventory/model.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/ayon_core/tools/sceneinventory/model.py b/client/ayon_core/tools/sceneinventory/model.py index c505ece689..3db33c77f7 100644 --- a/client/ayon_core/tools/sceneinventory/model.py +++ b/client/ayon_core/tools/sceneinventory/model.py @@ -246,6 +246,8 @@ class InventoryModel(QtGui.QStandardItemModel): item.setData(container_item.item_id, ITEM_ID_ROLE) item.setData(version_value, VERSION_VALUE_ROLE) item.setData(version_label, VERSION_LABEL_ROLE) + item.setData(container_item.loader_name, LOADER_NAME_ROLE) + item.setData(container_item.object_name, OBJECT_NAME_ROLE) item.setData(True, IS_CONTAINER_ITEM_ROLE) item.setData(unique_name, ITEM_UNIQUE_NAME_ROLE) container_model_items.append(item)