diff options
author | Oz Linden <oz@lindenlab.com> | 2011-04-04 15:26:56 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-04-04 15:26:56 -0400 |
commit | 94aa24a89ee96689633fad4e7250f6f81b6b76c1 (patch) | |
tree | 58eaa9b1e6af1eea6aedffe51d758f177217f172 /indra/newview/llnearbychathandler.cpp | |
parent | 1a2cc89cc59d92e768e109a1a822bfedfd9aaf01 (diff) | |
parent | e952f77a505cf274ca0b3ea95b504a51e757806a (diff) |
merge changes for social-859
Diffstat (limited to 'indra/newview/llnearbychathandler.cpp')
-rw-r--r-- | indra/newview/llnearbychathandler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llnearbychathandler.cpp b/indra/newview/llnearbychathandler.cpp index de5439e4e0..0d9daeb44e 100644 --- a/indra/newview/llnearbychathandler.cpp +++ b/indra/newview/llnearbychathandler.cpp @@ -558,6 +558,7 @@ void LLNearbyChatHandler::processChat(const LLChat& chat_msg, const LLSD &args) } */ + // Add a nearby chat toast. LLUUID id; id.generate(); @@ -583,6 +584,10 @@ void LLNearbyChatHandler::processChat(const LLChat& chat_msg, const LLSD &args) notification["text_color"] = r_color_name; notification["color_alpha"] = r_color_alpha; notification["font_size"] = (S32)LLViewerChat::getChatFontSize() ; + + // Pass sender info so that it can be rendered properly (STORM-1021). + notification["sender_slurl"] = LLViewerChat::getSenderSLURL(chat_msg, args); + channel->addNotification(notification); } |