summaryrefslogtreecommitdiff
path: root/indra/newview/llstartup.cpp
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2010-04-27 13:54:40 -0700
committerJames Cook <james@lindenlab.com>2010-04-27 13:54:40 -0700
commit56f5a6909d8a665531e3f6ede380cad57e313728 (patch)
treeff8ec9b0441a800336030f207e41fc2bc703a7a3 /indra/newview/llstartup.cpp
parent6d239f7cfae65e6c8354d9f94061e81e82112a44 (diff)
Menu item to disable display names for testing works again
Start up cache in not-running state on viewer. Set cache running when idle() is called. Explicitly refresh name tags when toggled. Reviewed with Simon
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r--indra/newview/llstartup.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index 7531853008..2baaf0f58f 100644
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -2771,7 +2771,9 @@ void LLStartUp::initNameCache()
// Load stored cache if possible
LLAppViewer::instance()->loadNameCache();
- LLAvatarNameCache::initClass();
+ // Start cache in not-running state until we figure out if we have
+ // capabilities for display name lookup
+ LLAvatarNameCache::initClass(false);
}
void LLStartUp::cleanupNameCache()