diff --git a/indra/newview/llpanelavatar.cpp b/indra/newview/llpanelavatar.cpp index ca3d9f52f..c1820c5bd 100644 --- a/indra/newview/llpanelavatar.cpp +++ b/indra/newview/llpanelavatar.cpp @@ -186,7 +186,12 @@ void LLPanelAvatarSecondLife::processProperties(void* data, EAvatarProcessorType args["[PAYMENTINFO]"] = LLAvatarPropertiesProcessor::paymentInfo(pAvatarData); args["[AGEVERIFICATION]"] = LLStringUtil::null; - getChild("acct")->setValue(getString("CaptionTextAcctInfo", args)); + { + const auto account_info = getString("CaptionTextAcctInfo", args); + auto acct = getChild("acct"); + acct->setValue(account_info); + acct->setToolTip(account_info); + } getChild("img")->setImageAssetID(pAvatarData->image_id);