summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authormaksymsproductengine <maksymsproductengine@lindenlab.com>2013-07-08 16:03:01 +0300
committermaksymsproductengine <maksymsproductengine@lindenlab.com>2013-07-08 16:03:01 +0300
commitaa9282be1fca61445c49a91c7ad512bd6b561bf6 (patch)
tree28f65fdb021b33aa27d7c6faad8be36e465042b8 /indra/newview
parent7c2f835a506e53b430ce645b0f005a0cc1692d09 (diff)
CHUI-982 FIXED Clicking on conversation in conversation list to bring focus to conversation removes text entry prompt for chat bar
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llconversationview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llconversationview.cpp b/indra/newview/llconversationview.cpp
index 9bb9c826e5..54baaeee53 100755
--- a/indra/newview/llconversationview.cpp
+++ b/indra/newview/llconversationview.cpp
@@ -282,7 +282,7 @@ BOOL LLConversationViewSession::handleMouseUp( S32 x, S32 y, MASK mask )
LLConversationItem* item = dynamic_cast<LLConversationItem *>(getViewModelItem());
LLUUID session_id = item? item->getUUID() : LLUUID();
LLFloaterIMSessionTab* session_floater = LLFloaterIMSessionTab::findConversation(session_id);
- if(!session_floater->getHost() && !session_floater->hasFocus())
+ if(!session_floater->hasFocus())
{
session_floater->setFocus(true);
}