diff --git a/indra/llui/llchatmentionhelper.cpp b/indra/llui/llchatmentionhelper.cpp
index f7769b2cbe..5745389a58 100644
--- a/indra/llui/llchatmentionhelper.cpp
+++ b/indra/llui/llchatmentionhelper.cpp
@@ -98,7 +98,14 @@ void LLChatMentionHelper::showHelper(LLUICtrl* host_ctrl, S32 local_x, S32 local
LLRect rect = av_picker_floater->getRect();
rect.setLeftTopAndSize(floater_x, floater_y + rect.getHeight(), rect.getWidth(), rect.getHeight());
av_picker_floater->setRect(rect);
- av_picker_floater->openFloater(LLSD().with("av_name", av_name));
+ if (av_picker_floater->isShown())
+ {
+ av_picker_floater->onOpen(LLSD().with("av_name", av_name));
+ }
+ else
+ {
+ av_picker_floater->openFloater(LLSD().with("av_name", av_name));
+ }
}
void LLChatMentionHelper::hideHelper(const LLUICtrl* ctrl)
diff --git a/indra/llui/llui.cpp b/indra/llui/llui.cpp
index fd0475037c..f6be95d5c6 100644
--- a/indra/llui/llui.cpp
+++ b/indra/llui/llui.cpp
@@ -133,10 +133,13 @@ LLUUID find_ui_sound(const char * namep, bool force_sound)
else if (ui_inst->mAudioCallback != NULL)
{
// Silencer for FIRE-7556: Configurable User Interface sounds
- if (name != "UISndTrackerBeacon" && name != "UISndNewIncomingIMSession" && name != "UISndNewIncomingGroupIMSession" && name != "UISndNewIncomingConfIMSession") // There is no need to process these here, checks are already elsewhere
+ if (name != "UISndTrackerBeacon" && name != "UISndNewIncomingIMSession" && name != "UISndNewIncomingGroupIMSession" &&
+ name != "UISndNewIncomingConfIMSession" &&
+ name != "UISndChatMention") // There is no need to process these here, checks are already elsewhere
{
- if (!force_sound && ( (name != "UISndSnapshot" && !ui_inst->mSettingGroups[group_name]->getBOOL("PlayMode" + name)) || (name == "UISndSnapshot" && ui_inst->mSettingGroups["config"]->getBOOL("PlayModeUISndSnapshot")) ) )
- return LLUUID(NULL);
+ if (!force_sound && ((name != "UISndSnapshot" && !ui_inst->mSettingGroups[group_name]->getBOOL("PlayMode" + name)) ||
+ (name == "UISndSnapshot" && ui_inst->mSettingGroups["config"]->getBOOL("PlayModeUISndSnapshot"))))
+ return LLUUID::null;
}
//
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 949c72d8b3..90456753cb 100644
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -9673,6 +9673,17 @@ Change of this parameter will affect the layout of buttons in notification toast
Value
0
+ PlaySoundChatMention
+
PluginAttachDebuggerToPlugins
+ UISndChatMention
+
+ UISndChatPing
+
UISndClick