Skip to content
Snippets Groups Projects
Commit b20e7dcb authored by Igor Borovkov's avatar Igor Borovkov
Browse files

fixed EXT-5429 IM chat history of active tab in IM container is not updated...

fixed EXT-5429 IM chat history of active tab in IM container is not updated when IM container is unminimized

--HG--
branch : product-engine
parent 61e799a4
No related branches found
No related tags found
No related merge requests found
......@@ -145,4 +145,16 @@ LLIMFloaterContainer* LLIMFloaterContainer::getInstance()
return LLFloaterReg::getTypedInstance<LLIMFloaterContainer>("im_container");
}
void LLIMFloaterContainer::setMinimized(BOOL b)
{
LLMultiFloater::setMinimized(b);
if (isMinimized()) return;
if (getActiveFloater())
{
getActiveFloater()->setVisible(TRUE);
}
}
// EOF
......@@ -63,6 +63,8 @@ class LLIMFloaterContainer : public LLMultiFloater
static LLIMFloaterContainer* getInstance();
virtual void setMinimized(BOOL b);
private:
typedef std::map<LLUUID,LLFloater*> avatarID_panel_map_t;
avatarID_panel_map_t mSessions;
......
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