diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-02-15 02:19:49 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-02-17 23:09:51 +0200 |
commit | ec02220f068c7e7ec61e8c8af7a3c4c96c112172 (patch) | |
tree | 7c0b3acb78b5253ea76990490fc1247415dccc1e /indra/newview/llinventorybridge.cpp | |
parent | 734b1b5d421254c45b3eb0fe0a5bbc8159e489fc (diff) |
SL-19108 WIP Managing inventory thumbnail #1
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 31801c0aa0..1b36c718f5 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -1719,6 +1719,12 @@ void LLItemBridge::performAction(LLInventoryModel* model, std::string action) restoreItem(); return; } + else if ("thumbnail" == action) + { + LLSD data(mUUID); + LLFloaterReg::showInstance("change_item_thumbnail", data); + return; + } else if ("copy_uuid" == action) { // Single item only |