Update for low bug EXT-5201 - Opening multi tabbed IM floater from IMWell does not focus the floater.

Implemented same fix for Script Floaters

--HG--
branch : product-engine
master
Dmitry Zaporozhan 2010-02-09 13:58:14 +02:00
parent d139894cc1
commit bfe5754ad2
1 changed files with 3 additions and 0 deletions

View File

@ -482,7 +482,10 @@ BOOL LLIMWellWindow::ObjectRowPanel::handleMouseDown(S32 x, S32 y, MASK mask)
{
// Pass the mouse down event to the chiclet (EXT-596).
if (!mChiclet->pointInView(x, y) && !mCloseBtn->getRect().pointInRect(x, y)) // prevent double call of LLIMChiclet::onMouseDown()
{
mChiclet->onMouseDown();
return TRUE;
}
return LLPanel::handleMouseDown(x, y, mask);
}