summaryrefslogtreecommitdiff
path: root/indra/newview/llinspectgroup.cpp
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2009-10-20 00:33:02 +0000
committerJames Cook <james@lindenlab.com>2009-10-20 00:33:02 +0000
commit5d8079a10881351123500cfc6028e01ac726995e (patch)
tree556dac1588da5dea8eb94e58c2ef6b8fa9821ebe /indra/newview/llinspectgroup.cpp
parentb7eb9a15f106789a499dc72a5c2979c3cf15ab1e (diff)
EXT-1518 Show "nobody" for null UUID avatar SLURL links, "none" for null group SLURL links.
Show "Loading..." while looking up real names. Fix group inspector "view details" button not working. Reviewed with Ambroff.
Diffstat (limited to 'indra/newview/llinspectgroup.cpp')
-rw-r--r--indra/newview/llinspectgroup.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llinspectgroup.cpp b/indra/newview/llinspectgroup.cpp
index e079e27e56..c78bcd6afe 100644
--- a/indra/newview/llinspectgroup.cpp
+++ b/indra/newview/llinspectgroup.cpp
@@ -37,6 +37,7 @@
#include "llgroupactions.h"
#include "llgroupmgr.h"
#include "llinspect.h"
+#include "llstartup.h"
// Linden libraries
#include "llcontrol.h" // LLCachedControl
@@ -200,6 +201,12 @@ void LLInspectGroup::requestUpdate()
// login screen (which is useful to work on the layout).
if (mGroupID.isNull())
{
+ if (LLStartUp::getStartupState() >= STATE_STARTED)
+ {
+ // once we're running we don't want to show the test floater
+ // for bogus LLUUID::null links
+ closeFloater();
+ }
return;
}