diff options
| author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2025-05-16 17:41:56 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-16 17:41:56 +0300 | 
| commit | d5313e7161bb99045adc4a1a34d7f85de609d97b (patch) | |
| tree | 89422db089a7239d1be6a3fc3762019c3d960cb2 /indra/newview | |
| parent | b5db42e26b64952bdc485bd8a0e0731856f03ae9 (diff) | |
#4091 fix speaker icon is showing all users speaking when anyone is talking
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llavatarlistitem.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/newview/llavatarlistitem.cpp b/indra/newview/llavatarlistitem.cpp index 6ef45ed160..80c7f8beca 100644 --- a/indra/newview/llavatarlistitem.cpp +++ b/indra/newview/llavatarlistitem.cpp @@ -325,7 +325,8 @@ void LLAvatarListItem::setShowProfileBtn(bool show)  void LLAvatarListItem::showSpeakingIndicator(bool visible)  { -    if (mSpeakingIndicator) +    // used only to hide indicator to not contradict with SpeakingIndicatorManager functionality +    if (mSpeakingIndicator && !visible)      {          mSpeakingIndicator->setIsActiveChannel(visible);          mSpeakingIndicator->setShowParticipantsSpeaking(visible); | 
