diff options
author | Richard Linden <none@none> | 2012-01-26 12:11:22 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-01-26 12:11:22 -0800 |
commit | ce9ff40c64929cef8c8f422723ce631735774c9a (patch) | |
tree | fa4930d7d17e040f25367b1f551cbbdd26b6eb7a /indra/newview/llinventorybridge.cpp | |
parent | a2626f0ee8c723781419ae9722e52872c754e0ba (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.cpp | 3 |
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); } } |