From a66e5a457047ea5481b007c92d091393ee7cab5b Mon Sep 17 00:00:00 2001 From: "pinkerton%netscape.com" Date: Tue, 25 Aug 1998 20:25:15 +0000 Subject: [PATCH] Allow tooltip to show up even when not on a valid cell. git-svn-id: svn://10.0.0.236/trunk@8457 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/lib/mac/UserInterface/Tables/CTableTooltipPane.cp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mozilla/lib/mac/UserInterface/Tables/CTableTooltipPane.cp b/mozilla/lib/mac/UserInterface/Tables/CTableTooltipPane.cp index c0656d218cd..19e413e19f6 100644 --- a/mozilla/lib/mac/UserInterface/Tables/CTableTooltipPane.cp +++ b/mozilla/lib/mac/UserInterface/Tables/CTableTooltipPane.cp @@ -168,8 +168,7 @@ CStandardFlexTable* CTableToolTipPane::GetTableAndCell( table->PortToLocalPoint(mouseLocal); SPoint32 whereImage; table->LocalToImagePoint(mouseLocal, whereImage); - if (!table->GetCellHitBy(whereImage, outCell)) - table = nil; + table->GetCellHitBy(whereImage, outCell); } return table; } // CTableToolTipPane::GetTableAndCell