diff options
author | Mike Antipov <mantipov@productengine.com> | 2009-12-16 18:14:15 +0200 |
---|---|---|
committer | Mike Antipov <mantipov@productengine.com> | 2009-12-16 18:14:15 +0200 |
commit | 0ec2bacfac207451386b55006f94e917f1277edc (patch) | |
tree | b091300523e7566ba888215edfc0fedb3615c0d1 /indra/newview/llimview.cpp | |
parent | 5370d9f35bc5aac49dbb8f065c13f094879ed436 (diff) |
Work on EXT-3431 Implement 'mute/unmute everyone else' moderation in the voice control panel
-- changed behavior of 'mute/unmute everyone else' action to disable/enable voice chat and allow/disallow selected participant
Improvements to have more intellectual processing of several following requests is necessary
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llimview.cpp')
-rw-r--r-- | indra/newview/llimview.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 1d56fc0cab..ad30b844a9 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2733,6 +2733,11 @@ public: { im_floater->processSessionUpdate(input["body"]["info"]); } + LLIMSpeakerMgr* im_mgr = LLIMModel::getInstance()->getSpeakerManager(session_id); + if (im_mgr) + { + im_mgr->processSessionUpdate(input["body"]["info"]); + } } }; |