summaryrefslogtreecommitdiff
path: root/indra/newview/lllocalbitmaps.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2022-08-22 22:11:58 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2022-08-23 00:23:16 +0300
commit8a91c1394745a28cb78e7432eaa481b6cedd7408 (patch)
treec76ba026d04ce83a17c61f9c113d2e955c1e92f4 /indra/newview/lllocalbitmaps.cpp
parent0d217dc73c6530dcbceb306c4609e2d72da6d70b (diff)
SL-17653 Local gltf materials #3
Diffstat (limited to 'indra/newview/lllocalbitmaps.cpp')
-rw-r--r--indra/newview/lllocalbitmaps.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/newview/lllocalbitmaps.cpp b/indra/newview/lllocalbitmaps.cpp
index 6d22a3af52..c3e3fd5c1b 100644
--- a/indra/newview/lllocalbitmaps.cpp
+++ b/indra/newview/lllocalbitmaps.cpp
@@ -1109,9 +1109,10 @@ void LLLocalBitmapMgr::feedScrollList(LLScrollListCtrl* ctrl)
element["columns"][1]["type"] = "text";
element["columns"][1]["value"] = (*iter)->getShortName();
- element["columns"][2]["column"] = "unit_id_HIDDEN";
- element["columns"][2]["type"] = "text";
- element["columns"][2]["value"] = (*iter)->getTrackingID();
+ LLSD data;
+ data["id"] = (*iter)->getTrackingID();
+ data["type"] = (S32)LLAssetType::AT_TEXTURE;
+ element["value"] = data;
ctrl->addElement(element);
}