summaryrefslogtreecommitdiff
path: root/indra/newview/llhints.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2010-10-15 16:35:39 -0400
committerOz Linden <oz@lindenlab.com>2010-10-15 16:35:39 -0400
commit068e3cc469793c75b0d54ef0864388582bb3b63c (patch)
treedbab152cf43bc84f23b2f63f9e8f8d83117e28af /indra/newview/llhints.cpp
parente748167abfabbc541c3ceb9e2d5a46fa3564f15a (diff)
parent8158c5637a9ad83a7b36b104116c37390b57c7ab (diff)
pull fix for STORM-304 / STORM-386
Diffstat (limited to 'indra/newview/llhints.cpp')
-rw-r--r--indra/newview/llhints.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llhints.cpp b/indra/newview/llhints.cpp
index d837ed8205..7f6df627e0 100644
--- a/indra/newview/llhints.cpp
+++ b/indra/newview/llhints.cpp
@@ -211,9 +211,16 @@ void LLHintPopup::draw()
else if (!targetp->isInVisibleChain())
{
// if target is invisible, don't draw, but keep alive in case widget comes back
+ // but do make it so that it allows mouse events to pass through
+ setEnabled(false);
+ setMouseOpaque(false);
}
else
{
+ // revert back enabled and mouse opaque state in case we disabled it before
+ setEnabled(true);
+ setMouseOpaque(true);
+
LLRect target_rect;
targetp->localRectToOtherView(targetp->getLocalRect(), &target_rect, getParent());