diff options
author | Gilbert Gonzales <gilbert@lindenlab.com> | 2012-09-21 16:26:44 -0700 |
---|---|---|
committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2012-09-21 16:26:44 -0700 |
commit | 18f294715822bedaea3bafa9dfec1ee42c12353c (patch) | |
tree | 1552a67246b3baa16421a355f24ee7a6372250e4 /indra/newview/llconversationview.cpp | |
parent | bd4acad1c1df22f509633f6e504c3b44880673cc (diff) |
CHUI-283: Now the mouse over highlight only shows up when hovering over a participant. Before there was a bug where the onMouseLeave() function was not being called. This prevented the mouse-over-highlight from turning off.
Diffstat (limited to 'indra/newview/llconversationview.cpp')
-rwxr-xr-x | indra/newview/llconversationview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llconversationview.cpp b/indra/newview/llconversationview.cpp index 26d618e1b3..394a830e5e 100755 --- a/indra/newview/llconversationview.cpp +++ b/indra/newview/llconversationview.cpp @@ -440,7 +440,7 @@ void LLConversationViewParticipant::onMouseLeave(S32 x, S32 y, MASK mask) { mInfoBtn->setVisible(false); updateChildren(); - LLFolderViewItem::onMouseEnter(x, y, mask); + LLFolderViewItem::onMouseLeave(x, y, mask); } S32 LLConversationViewParticipant::getLabelXPos() |