diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-08-04 18:17:50 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-08-04 18:29:02 +0300 |
commit | a16babdf7d96fbbe345d9e0c5df178e48539751c (patch) | |
tree | 4d735fe46ee5c3ebd6636a6d5a251e46511d74e2 /indra/newview/llstatusbar.cpp | |
parent | b6cd14fc47cff62f6a30874d71be86d6639c32da (diff) |
SL-18049 Part 4; Adjustments and fixes
Diffstat (limited to 'indra/newview/llstatusbar.cpp')
-rw-r--r-- | indra/newview/llstatusbar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llstatusbar.cpp b/indra/newview/llstatusbar.cpp index a9ec4ffbb4..0145380712 100644 --- a/indra/newview/llstatusbar.cpp +++ b/indra/newview/llstatusbar.cpp @@ -193,7 +193,7 @@ BOOL LLStatusBar::postBuild() gSavedSettings.getControl("MuteAudio")->getSignal()->connect(boost::bind(&LLStatusBar::onVolumeChanged, this, _2)); gSavedSettings.getControl("EnableVoiceChat")->getSignal()->connect(boost::bind(&LLStatusBar::onVoiceChanged, this, _2)); - if (gSavedSettings.getBOOL("EnableVoiceChat") && !LLVoiceClient::isMutedVoiceInstance()) + if (gSavedSettings.getBOOL("EnableVoiceChat")) { mBtnVolume->setImageUnselected(LLUI::getUIImage("Audio_Off")); } @@ -653,7 +653,7 @@ void LLStatusBar::onVolumeChanged(const LLSD& newvalue) void LLStatusBar::onVoiceChanged(const LLSD& newvalue) { - if (newvalue.asBoolean() && !LLVoiceClient::isMutedVoiceInstance()) + if (newvalue.asBoolean()) { mBtnVolume->setImageUnselected(LLUI::getUIImage("Audio_Off")); } |