diff options
author | Richard Linden <none@none> | 2012-01-13 18:37:50 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-01-13 18:37:50 -0800 |
commit | 5e5105bd223f5180bbca634ba2c393be2ef3d13d (patch) | |
tree | 2fbfddb6a081a97f789ab75031a7c6b2af463d95 /indra/newview/llinventorybridge.cpp | |
parent | 37cd2aafa784e785fdd695bd940079de72edc1f2 (diff) |
EXP-1770 WIP Drag and drop visual selection can be off across hierarchies
added throttling to fetchInventoryItem queries
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index eaf9b53eb9..5916ed60a4 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -1234,7 +1234,7 @@ void LLItemBridge::selectItem() LLViewerInventoryItem* item = static_cast<LLViewerInventoryItem*>(getItem()); if(item && !item->isFinished()) { - item->fetchFromServer(); + LLInventoryModelBackgroundFetch::instance().start(item->getUUID(), false); } } |