summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorymodel.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2014-04-02 18:06:22 -0700
committerMerov Linden <merov@lindenlab.com>2014-04-02 18:06:22 -0700
commita98346b0c3b90e75858f6ef98985c1246ad30418 (patch)
tree7bf8e088dafcdc04b839043ff2c2779994534f95 /indra/newview/llinventorymodel.cpp
parentf66de28a7cf735df15d167df270943547bdbde81 (diff)
DD-20 : WIP : Improve Cut and Paste for marketplace. Still some use cases that are not working well
Diffstat (limited to 'indra/newview/llinventorymodel.cpp')
-rwxr-xr-xindra/newview/llinventorymodel.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index afddde02a4..269542d383 100755
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -1056,11 +1056,9 @@ 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;
}
+ llinfos << "Merov : updateCategory : " << cat->getName() << llendl;
old_cat->copyViewerCategory(cat);
addChangedMask(mask, cat->getUUID());
}