Fix internal issue of column headers not displaying tooltips

This commit is contained in:
Lirusaito
2013-07-16 00:52:59 -04:00
parent cee9e976b1
commit 9b92b51b2c
3 changed files with 18 additions and 2 deletions

View File

@@ -1612,8 +1612,7 @@ BOOL LLScrollListCtrl::handleToolTip(S32 x, S32 y, std::string& msg, LLRect* sti
LLScrollColumnHeader* headerp = columnp->mHeader;
if (headerp && !handled)
{
headerp->handleToolTip(x, y, msg, sticky_rect_screen);
handled = !msg.empty();
handled = headerp->handleToolTip(x, y, msg, sticky_rect_screen);
}
return handled;