From 6885bf6368f4204a5dab7eb7a03e7df3a8c3c350 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Sun, 22 Dec 2019 19:04:24 -0500 Subject: [PATCH] Hack to get right click copy group name to work on my groups floater --- indra/newview/llfloatergroups.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/indra/newview/llfloatergroups.cpp b/indra/newview/llfloatergroups.cpp index 41e9b3fe0..0e3374ecf 100644 --- a/indra/newview/llfloatergroups.cpp +++ b/indra/newview/llfloatergroups.cpp @@ -391,6 +391,9 @@ void init_group_list(LLScrollListCtrl* ctrl, const LLUUID& highlight_id, U64 pow if (element.size()) { group_list->addElement(element, ADD_SORTED); + // Force a name lookup here to get it added to the cache so other UI is prepared + std::string dummy; + gCacheName->getGroupName(group.mID, dummy); } }