Not doing it half-way would help...

master
Ansariel 2024-03-04 16:04:15 +01:00
parent 6361932c21
commit ebcafcfa58
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ bool LLEmojiHelper::isActive(const LLUICtrl* ctrl_p) const
bool LLEmojiHelper::isCursorInEmojiCode(const LLWString& wtext, S32 cursorPos, S32* pShortCodePos)
{
// <FS:PP> FIRE-33735: Option to suppress emoji chooser window from automatically popping up while typing in chat bars
static LLCachedControl<bool> FSSuppressEmojiWindowPopupWhileTyping(*LLUI::getInstance()->mSettingGroups["config"], "FSSuppressEmojiWindowPopupWhileTyping");
if (FSSuppressEmojiWindowPopupWhileTyping)
static LLUICachedControl<bool> FSEnableEmojiWindowPopupWhileTyping("FSEnableEmojiWindowPopupWhileTyping");
if (!FSEnableEmojiWindowPopupWhileTyping)
{
return false;
}