From 0843505fae0e777720cc1b73c38bbeae454ee16e Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Wed, 15 Jul 2015 22:06:10 -0400 Subject: [PATCH] [Radar] When opening, refresh the avatar list gui Normally we cut back on refreshAvatarList calls to avoid work when not visible. When we reopen, there needs to be a call to refreshAvatarList so the user isn't waiting for position updates to see correct data. --- indra/newview/llfloateravatarlist.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/newview/llfloateravatarlist.cpp b/indra/newview/llfloateravatarlist.cpp index 45fe720cd..31205a3f8 100644 --- a/indra/newview/llfloateravatarlist.cpp +++ b/indra/newview/llfloateravatarlist.cpp @@ -268,6 +268,7 @@ void LLFloaterAvatarList::draw() void LLFloaterAvatarList::onOpen() { + if (mAvatars.size()) refreshAvatarList(); } void LLFloaterAvatarList::onClose(bool app_quitting)