diff options
author | Roxie Linden <roxie@lindenlab.com> | 2010-04-21 18:17:11 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2010-04-21 18:17:11 -0700 |
commit | 5b9da4e8d91acd075dfaf33fb489c480c25e9ade (patch) | |
tree | f296e32b384b341d9c626a4305cd7cd8924c9986 /indra/newview/llimview.cpp | |
parent | c139e52a5bf1ca2273d4fd22f28f55b12ba8a2d7 (diff) | |
parent | 144b8349b3f0773ac575e178a0e3109d963be9a8 (diff) |
Automated merge
Diffstat (limited to 'indra/newview/llimview.cpp')
-rw-r--r-- | indra/newview/llimview.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 109090a75a..ed21ffd6a6 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2741,6 +2741,12 @@ bool LLIMMgr::endCall(const LLUUID& session_id) if (!voice_channel) return false; voice_channel->deactivate(); + LLIMModel::LLIMSession* im_session = LLIMModel::getInstance()->findIMSession(session_id); + if (im_session) + { + // need to update speakers' state + im_session->mSpeakers->update(FALSE); + } return true; } |