diff options
| author | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-07-19 15:11:56 +0300 |
|---|---|---|
| committer | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-07-19 15:11:56 +0300 |
| commit | 7c9be0e3de6821478c71e4646f07fb112e0e572c (patch) | |
| tree | a2901834d2aed9677552eec3190235a543498b29 /indra/newview/llimfloater.cpp | |
| parent | 6227a5c273efbe732c8068400d7e4b5486981bba (diff) | |
CHUI-229 [FIXED] Nearby chat conversation does not appear initially in conversation list if no other conversations are present
Diffstat (limited to 'indra/newview/llimfloater.cpp')
| -rw-r--r-- | indra/newview/llimfloater.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index 23c97c5345..22ce3cd42b 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -346,6 +346,10 @@ BOOL LLIMFloater::postBuild() initIMFloater(); + // Add a conversation list item in the left pane + LLIMFloaterContainer* im_box = LLIMFloaterContainer::getInstance(); + im_box->addConversationListItem(getTitle(), getKey(), this); + return TRUE; } @@ -641,10 +645,6 @@ LLIMFloater* LLIMFloater::show(const LLUUID& session_id) } } - // Add a conversation list item in the left pane: nothing will be done if already in there - // but relevant clean up will be done to ensure consistency of the conversation list - floater_container->addConversationListItem(floater->getTitle(), session_id, floater); - floater->openFloater(floater->getKey()); } else |
