diff options
author | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-12-01 16:53:15 +0200 |
---|---|---|
committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-12-01 16:53:15 +0200 |
commit | cf3d40462e3c0421884a098505413c00f9004e6a (patch) | |
tree | 9b5dda332d1326d7b64859cd4ad2757936f606c0 /indra | |
parent | 0699c41e7c951464f759f63f43f4dea2a85ba528 (diff) |
fix for normal EXT-1713 Nearby Chat: Objects have tooltips (???)(???)
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llavatariconctrl.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llavatariconctrl.cpp b/indra/newview/llavatariconctrl.cpp index 8f3eba98a6..44cbbbb6b2 100644 --- a/indra/newview/llavatariconctrl.cpp +++ b/indra/newview/llavatariconctrl.cpp @@ -303,5 +303,9 @@ void LLAvatarIconCtrl::nameUpdatedCallback( { setToolTip(mFirstName + " " + mLastName); } + else + { + setToolTip(std::string("")); + } } } |