Skip to content
Snippets Groups Projects
Commit 4a2fb4c6 authored by maksymsproductengine's avatar maksymsproductengine
Browse files

CHUI-873 FIXED [CHUIBUG]Torn off nearby chat with message panel hidden has...

CHUI-873 FIXED [CHUIBUG]Torn off nearby chat with message panel hidden has huge bottom padding when opening in mouselook mode
parent a48cd164
No related branches found
No related tags found
No related merge requests found
......@@ -739,7 +739,14 @@ void LLFloaterIMNearbyChat::startChat(const char* line)
LLFloaterIMNearbyChat* nearby_chat = LLFloaterReg::getTypedInstance<LLFloaterIMNearbyChat>("nearby_chat");
if (nearby_chat)
{
nearby_chat->show();
if(!nearby_chat->isTornOff())
{
nearby_chat->show();
}
if(nearby_chat->isMinimized())
{
nearby_chat->setMinimized(false);
}
nearby_chat->setVisible(TRUE);
nearby_chat->setFocus(TRUE);
nearby_chat->mInputEditor->setFocus(TRUE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment