diff options
author | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2010-02-09 13:58:14 +0200 |
---|---|---|
committer | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2010-02-09 13:58:14 +0200 |
commit | bfe5754ad290cfb886dacc4351adc32daa31456b (patch) | |
tree | 99d2477d3222caedb44111b64a0eb91a54ce3c65 /indra/newview | |
parent | d139894cc126b1e5e8457989696b509cdd62433e (diff) |
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
Diffstat (limited to 'indra/newview')
-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 f355b6107c..127b4265ca 100644 --- a/indra/newview/llsyswellwindow.cpp +++ b/indra/newview/llsyswellwindow.cpp @@ -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); } |