Skip to content
Snippets Groups Projects
Commit c1e36232 authored by Yuri Chebotarev's avatar Yuri Chebotarev
Browse files

fix for normal EXT-1713 Nearby Chat: Objects have tooltips (???)(???)

--HG--
branch : product-engine
parent 51a7388d
No related branches found
No related tags found
No related merge requests found
......@@ -293,7 +293,12 @@ void LLNearbyChatToastPanel::draw()
{
if(mIsDirty)
{
getChild<LLAvatarIconCtrl>("avatar_icon", false)->setValue(mFromID);
LLAvatarIconCtrl* icon = getChild<LLAvatarIconCtrl>("avatar_icon", false);
if(icon)
{
icon->setDrawTooltip(mSourceType == CHAT_SOURCE_AGENT);
icon->setValue(mFromID);
}
mIsDirty = false;
}
LLToastPanelBase::draw();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment