summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorybridge.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2012-01-26 12:11:22 -0800
committerRichard Linden <none@none>2012-01-26 12:11:22 -0800
commitce9ff40c64929cef8c8f422723ce631735774c9a (patch)
treefa4930d7d17e040f25367b1f551cbbdd26b6eb7a /indra/newview/llinventorybridge.cpp
parenta2626f0ee8c723781419ae9722e52872c754e0ba (diff)
EXP-1844 FIX Selecting a large number of inventory items can block the viewer for a long time.
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rw-r--r--indra/newview/llinventorybridge.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index ff321f77fd..869cb735d5 100644
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -1324,8 +1324,7 @@ void LLItemBridge::selectItem()
LLViewerInventoryItem* item = static_cast<LLViewerInventoryItem*>(getItem());
if(item && !item->isFinished())
{
- item->fetchFromServer();
- //LLInventoryModelBackgroundFetch::instance().start(item->getUUID(), false);
+ LLInventoryModelBackgroundFetch::instance().start(item->getUUID(), false);
}
}