summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorymodel.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2014-04-01 21:41:18 -0700
committerMerov Linden <merov@lindenlab.com>2014-04-01 21:41:18 -0700
commitf66de28a7cf735df15d167df270943547bdbde81 (patch)
tree2d490a05b6a362cd3c5d6511fe544e32b901fa53 /indra/newview/llinventorymodel.cpp
parent69fb50322eb0de9071ed22d4e62cef11ae811c4d (diff)
DD-20 : WIP : Implemented the cut and paste code for marketplace. Stock update still not working as expected.
Diffstat (limited to 'indra/newview/llinventorymodel.cpp')
-rwxr-xr-xindra/newview/llinventorymodel.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index 96a2db5afb..afddde02a4 100755
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -1056,7 +1056,10 @@ void LLInventoryModel::updateCategory(const LLViewerInventoryCategory* cat)
const LLUUID marketplace_id = findCategoryUUIDForType(LLFolderType::FT_MARKETPLACE_LISTINGS, false);
if (marketplace_id.notNull() && isObjectDescendentOf(cat->getUUID(), marketplace_id))
{
+ // *TODO : Need some internal analysis to be less brutal with updates
mask |= LLInventoryObserver::LABEL;
+ mask |= LLInventoryObserver::STRUCTURE;
+ mask |= LLInventoryObserver::INTERNAL;
}
old_cat->copyViewerCategory(cat);
addChangedMask(mask, cat->getUUID());