diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-21 10:31:53 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-21 10:31:53 +0100 |
commit | 9eaf8eaf729193542f2b766eba5cbc624806a53f (patch) | |
tree | fbe93d19034869ecb517b48f1b59ee71ddadf6be /indra/newview/llnearbychatbar.cpp | |
parent | 563c80d2811c0100487f313d96ef6ef0ec15a0d9 (diff) | |
parent | 53505bd225608d1f048ca80e0bc475d2c125db3a (diff) |
merge from PE's viewer-trunk
Diffstat (limited to 'indra/newview/llnearbychatbar.cpp')
-rw-r--r-- | indra/newview/llnearbychatbar.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llnearbychatbar.cpp b/indra/newview/llnearbychatbar.cpp index b00fcb2608..680ed35fa2 100644 --- a/indra/newview/llnearbychatbar.cpp +++ b/indra/newview/llnearbychatbar.cpp @@ -86,6 +86,14 @@ public: LLScrollListCtrl::handleScrollWheel( x, y, clicks ); return TRUE; } + //See EXT-6598 + //Mouse hover over separator will result in not processing tooltip message + //So eat this message + BOOL handleToolTip(S32 x, S32 y, MASK mask) + { + LLScrollListCtrl::handleToolTip( x, y, mask ); + return TRUE; + } }; LLGestureComboList::Params::Params() |