diff --git a/indra/newview/llfloaterimnearbychat.cpp b/indra/newview/llfloaterimnearbychat.cpp index 65b8db2bb9b87bda24939fa19806fefa40dc69de..410eed6614a63c2c60554659112101099d4078f1 100644 --- a/indra/newview/llfloaterimnearbychat.cpp +++ b/indra/newview/llfloaterimnearbychat.cpp @@ -183,28 +183,17 @@ BOOL LLFloaterIMNearbyChat::postBuild() // virtual void LLFloaterIMNearbyChat::closeHostedFloater() { - // If detached from conversations window close anyway - if (!getHost()) - { - setVisible(FALSE); - } + LLFloaterEmojiPicker::saveState(); - // Should check how many conversations are ongoing. Select next to "Nearby Chat" in case there are some other besides. - // Close conversations window in case "Nearby Chat" is attached and the only conversation LLFloaterIMContainer* floater_container = LLFloaterIMContainer::getInstance(); - if (floater_container->getConversationListItemSize() == 1) + if (getHost()) { - if (getHost()) - { - floater_container->closeFloater(); - } + floater_container->closeFloater(); } - else + else // If detached from conversations window close anyway { - if (!getHost()) - { - floater_container->selectNextConversationByID(LLUUID()); - } + closeFloater(); + floater_container->selectNextConversationByID(LLUUID()); } } @@ -212,28 +201,15 @@ void LLFloaterIMNearbyChat::closeFloater(bool app_quitting) { LLFloaterEmojiPicker::saveState(); - // If detached from conversations window close anyway - if (!getHost()) - { - LLFloaterIMSessionTab::closeFloater(app_quitting); - } - - // Should check how many conversations are ongoing. Select next to "Nearby Chat" in case there are some other besides. - // Close conversations window in case "Nearby Chat" is attached and the only conversation LLFloaterIMContainer* floater_container = LLFloaterIMContainer::getInstance(); - if (floater_container->getConversationListItemSize() == 1) + if (getHost()) { - if (getHost()) - { - floater_container->closeFloater(app_quitting); - } + LLFloaterIMContainer::getInstance()->closeFloater(app_quitting); } - else + else // If detached from conversations window close anyway { - if (!getHost()) - { - floater_container->selectNextConversationByID(LLUUID()); - } + LLFloaterIMSessionTab::closeFloater(app_quitting); + floater_container->selectNextConversationByID(LLUUID()); } }