From 67970ab2db32d92679aa74bf4d837cdb771cc1e9 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Tue, 16 Jul 2013 06:58:17 -0400 Subject: [PATCH] Allow tooltips for any scrolllist cell Finally the radar activity icons have working tooltips to explain their meanings This probably won't do anything until Params are plugged in, though. --- indra/llui/llscrolllistctrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llui/llscrolllistctrl.cpp b/indra/llui/llscrolllistctrl.cpp index 07a588927..0268596d4 100644 --- a/indra/llui/llscrolllistctrl.cpp +++ b/indra/llui/llscrolllistctrl.cpp @@ -1594,7 +1594,7 @@ BOOL LLScrollListCtrl::handleToolTip(S32 x, S32 y, std::string& msg, LLRect* sti LLScrollListCell* hit_cell = hit_item->getColumn(column_index); if (!hit_cell) return FALSE; if (hit_cell - && hit_cell->isText() + //&& hit_cell->isText() // Singu Note: We welcome tooltips on any kind of cell && hit_cell->needsToolTip()) { S32 row_index = getItemIndex(hit_item);