diff options
author | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2010-02-09 13:43:23 +0200 |
---|---|---|
committer | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2010-02-09 13:43:23 +0200 |
commit | d139894cc126b1e5e8457989696b509cdd62433e (patch) | |
tree | 698670742edd8c87157cfd1ec82fe19dc3f2e475 /indra/newview/llsyswellwindow.cpp | |
parent | aa30d0550ca223ab387c19444e407ecb56384d7a (diff) |
Fixed low bug EXT-5201 - Opening multi tabbed IM floater from IMWell does not focus the floater.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llsyswellwindow.cpp')
-rw-r--r-- | indra/newview/llsyswellwindow.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llsyswellwindow.cpp b/indra/newview/llsyswellwindow.cpp index 4d1718be6a..f355b6107c 100644 --- a/indra/newview/llsyswellwindow.cpp +++ b/indra/newview/llsyswellwindow.cpp @@ -404,7 +404,10 @@ BOOL LLIMWellWindow::RowPanel::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); } |