diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2013-03-18 14:37:21 +0200 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2013-03-18 14:37:21 +0200 |
commit | bc8ac5854f8b1eb9995139bb43cdf3b944030076 (patch) | |
tree | 4610d10fc4079df0af427f593ae082bb1efecd8e /indra/newview/llfloaterimsession.cpp | |
parent | c294c7c4740e41c43b2b04f136cc909e37b28f7d (diff) |
CHUI-620 FIXED Clear the highlight when auto-selecting new conversation or when text is entered into the message panel.
Diffstat (limited to 'indra/newview/llfloaterimsession.cpp')
-rw-r--r-- | indra/newview/llfloaterimsession.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llfloaterimsession.cpp b/indra/newview/llfloaterimsession.cpp index 733678364e..73adfd0eda 100644 --- a/indra/newview/llfloaterimsession.cpp +++ b/indra/newview/llfloaterimsession.cpp @@ -892,6 +892,11 @@ void LLFloaterIMSession::onInputEditorFocusLost(LLFocusableElement* caller, void void LLFloaterIMSession::onInputEditorKeystroke(LLTextEditor* caller, void* userdata) { LLFloaterIMSession* self = (LLFloaterIMSession*)userdata; + LLFloaterIMContainer* im_box = LLFloaterIMContainer::findInstance(); + if (im_box) + { + im_box->flashConversationItemWidget(self->mSessionID,false); + } std::string text = self->mInputEditor->getText(); // Deleting all text counts as stopping typing. |