summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authormaxim_productengine <mnikolenko@productengine.com>2019-07-11 13:55:22 +0300
committermaxim_productengine <mnikolenko@productengine.com>2019-07-11 13:55:22 +0300
commit8ba2b01de24f4ff7e067d5e0fc995cc4ab7fb9d5 (patch)
treee8d7b6c93dcb6150925c5efa832c5ebdf854d162 /indra/newview
parent38a0a95431a67a9fac924a372189b6c4364d5c5f (diff)
SL-11566 FIXED The 'Group profile' floater opens when double-clicking on the scrollbar arrow in the 'Profile' floater
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llgrouplist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llgrouplist.cpp b/indra/newview/llgrouplist.cpp
index 3a81d1557e..179a9d6368 100644
--- a/indra/newview/llgrouplist.cpp
+++ b/indra/newview/llgrouplist.cpp
@@ -153,7 +153,7 @@ BOOL LLGroupList::handleDoubleClick(S32 x, S32 y, MASK mask)
// Handle double click only for the selected item in the list, skip clicks on empty space.
if (handled)
{
- if (mDoubleClickSignal)
+ if (mDoubleClickSignal && getItemsRect().pointInRect(x, y))
{
(*mDoubleClickSignal)(this, x, y, mask);
}