CHUI-976 FIXED Correct way to show Nearby chat is used now.

master
Mnikolenko ProductEngine 2013-06-12 15:05:15 +03:00
parent 0cf9597bd5
commit 452832b26f
1 changed files with 2 additions and 2 deletions

View File

@ -323,12 +323,12 @@ BOOL LLFloaterIMNearbyChatToastPanel::handleMouseUp (S32 x, S32 y, MASK mask)
return TRUE;
else
{
(LLFloaterReg::getTypedInstance<LLFloaterIMNearbyChat>("nearby_chat"))->showHistory();
LLFloaterReg::toggleInstanceOrBringToFront("nearby_chat");
return FALSE;
}
}
(LLFloaterReg::getTypedInstance<LLFloaterIMNearbyChat>("nearby_chat"))->showHistory();
LLFloaterReg::toggleInstanceOrBringToFront("nearby_chat");
return LLPanel::handleMouseUp(x,y,mask);
}