diff options
author | Steve Bennetts <steve@lindenlab.com> | 2009-10-30 09:42:04 -0700 |
---|---|---|
committer | Steve Bennetts <steve@lindenlab.com> | 2009-10-30 09:42:04 -0700 |
commit | 6324cf82f290e88c3db677e1ced706560d5ca00b (patch) | |
tree | bb6a8ba8b71a8ee15ab4423b157d18f11ae5b3c5 /indra/newview/llnearbychathandler.cpp | |
parent | 478f3d075b778740abe12f92c00ad6527545ee6c (diff) | |
parent | b2526cde2393ca7d84284b254fb4f37b9e8abb5b (diff) |
Merge hg.aws.productengine.com/secondlife/viewer-2-0/ revs 3836-3849
Diffstat (limited to 'indra/newview/llnearbychathandler.cpp')
-rw-r--r-- | indra/newview/llnearbychathandler.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llnearbychathandler.cpp b/indra/newview/llnearbychathandler.cpp index 6b0d6d61e0..957513e154 100644 --- a/indra/newview/llnearbychathandler.cpp +++ b/indra/newview/llnearbychathandler.cpp @@ -162,6 +162,8 @@ bool LLNearbyChatScreenChannel::createPoolToast() LLToast::Params p; p.panel = panel; + p.lifetime_secs = gSavedSettings.getS32("NearbyToastLifeTime"); + p.fading_time_secs = gSavedSettings.getS32("NearbyToastFadingTime"); LLToast* toast = new LLToast(p); @@ -326,6 +328,12 @@ void LLNearbyChatHandler::processChat(const LLChat& chat_msg) initChannel(); } + //only messages from AGENTS + if(CHAT_SOURCE_OBJECT == chat_msg.mSourceType) + { + return;//dn't show toast for messages from objects + } + LLUUID id; id.generate(); |