diff options
| author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-12-22 00:00:58 +0200 |
|---|---|---|
| committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-12-22 00:00:58 +0200 |
| commit | 29ff62c05d5f16660a4e7837ca5d12c87e77818b (patch) | |
| tree | e1db4de723041db2dd55f94a90b43818a83c7e27 /indra/newview/llimview.cpp | |
| parent | c496269f59128128e02ebe82251f09ab169788fe (diff) | |
| parent | e48af9ba0f40aa8096fddd28e4973d6853bc767e (diff) | |
Merged in lindenlab/viewer-lynx
Diffstat (limited to 'indra/newview/llimview.cpp')
| -rw-r--r-- | indra/newview/llimview.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 951389b856..2405c3a1a3 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2354,7 +2354,13 @@ void LLIncomingCallDialog::onAvatarNameCache(const LLUUID& agent_id, void LLIncomingCallDialog::onOpen(const LLSD& key) { LLCallDialog::onOpen(key); - make_ui_sound("UISndStartIM"); + + if (gSavedSettings.getBOOL("PlaySoundIncomingVoiceCall")) + { + // play a sound for incoming voice call if respective property is set + make_ui_sound("UISndStartIM"); + } + LLStringUtil::format_map_t args; LLGroupData data; // if it's a group call, retrieve group name to use it in question |
