diff options
author | Richard Linden <none@none> | 2012-02-09 12:58:43 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-02-09 12:58:43 -0800 |
commit | 4523b3137850df8922b12cc966633a3d5bb84374 (patch) | |
tree | e55aa7cbb75b4290eb9c9bb060ffbbe58657c8b7 /indra/newview/llinventorypanel.cpp | |
parent | ed137f40d137dd78d0ec916ca91814cf5534a9f6 (diff) |
EXP-1844 FIX Selecting a large number of inventory items can block the viewer for a long time.
only show hourglass and fetching text when downloading folders, not item metadata
Diffstat (limited to 'indra/newview/llinventorypanel.cpp')
-rw-r--r-- | indra/newview/llinventorypanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index 382569fa3a..01a8ecfb5d 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -817,7 +817,7 @@ BOOL LLInventoryPanel::handleHover(S32 x, S32 y, MASK mask) if(handled) { ECursorType cursor = getWindow()->getCursor(); - if (LLInventoryModelBackgroundFetch::instance().backgroundFetchActive() && cursor == UI_CURSOR_ARROW) + if (LLInventoryModelBackgroundFetch::instance().folderFetchActive() && cursor == UI_CURSOR_ARROW) { // replace arrow cursor with arrow and hourglass cursor getWindow()->setCursor(UI_CURSOR_WORKING); |