diff --git a/indra/newview/llfloaterbulkythumbs.cpp b/indra/newview/llfloaterbulkythumbs.cpp index 4392d1a90647ed4c7df3bbd1d8896643055e3b89..64661c6b404391e32c5afcf6debf21c1e777cb4b 100644 --- a/indra/newview/llfloaterbulkythumbs.cpp +++ b/indra/newview/llfloaterbulkythumbs.cpp @@ -37,6 +37,7 @@ #include "llclipboard.h" #include "llinventorymodel.h" #include "lltexteditor.h" +#include "lluuid.h" LLFloaterBulkyThumbs::LLFloaterBulkyThumbs(const LLSD& key) : LLFloater("floater_bulky_thumbs") @@ -88,7 +89,11 @@ void LLFloaterBulkyThumbs::onPasteFromInventory() { if (item->getType() == LLAssetType::AT_OBJECT) { - mInventoryItems->appendText(item->getName(), "\n"); + const std::string name = item->getName(); + const std::string item_asset_uuid_str = item->getAssetUUID().asString(); + const std::string thumb_uuid_str = item->getThumbnailUUID().asString(); + const std::string output_line = name + "|" + item_asset_uuid_str + "|" + thumb_uuid_str; + mInventoryItems->appendText(output_line, "\n"); } } } diff --git a/indra/newview/llfloaterbulkythumbs.h b/indra/newview/llfloaterbulkythumbs.h index 6d43ff9bc6598cf7e17d670c669112556b52a7b1..fbfc95f11b9140696800cb8cf2bd1208b68be002 100644 --- a/indra/newview/llfloaterbulkythumbs.h +++ b/indra/newview/llfloaterbulkythumbs.h @@ -30,6 +30,7 @@ #include "llfloater.h" class LLTextEditor; +class LLUUID; class LLFloaterBulkyThumbs: public LLFloater