Actually use LLWearable::mDescription.

Set LLWearable::mDescription and keep it up to date.
This allows to export (and import) the description of wearables.
This commit is contained in:
Aleric Inglewood
2013-07-19 21:17:42 +02:00
parent 66ef619415
commit 95a228b2e9
15 changed files with 110 additions and 10 deletions

View File

@@ -854,6 +854,10 @@ U32 LLInventoryModel::updateItem(const LLViewerInventoryItem* item)
{
mask |= LLInventoryObserver::LABEL;
}
if(old_item->getDescription() != item->getDescription())
{
mask |= LLInventoryObserver::DESCRIPTION;
}
old_item->copyViewerItem(item);
mask |= LLInventoryObserver::INTERNAL;
}