From c56bbbc2110b27d2b83f05be51bb9cb11d38c0ce Mon Sep 17 00:00:00 2001 From: jesus Date: Mon, 7 Nov 2005 16:59:07 +0000 Subject: [PATCH] OnSelectCell is now called even for the focused cell git-svn-id: trunk@8093 - --- lcl/grids.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/lcl/grids.pas b/lcl/grids.pas index 6bab989fb1..10b334db36 100644 --- a/lcl/grids.pas +++ b/lcl/grids.pas @@ -4694,6 +4694,7 @@ begin // Change on Focused cell? if (Dcol=FCol)and(DRow=FRow) then begin + SelectCell(DCol,DRow); end else begin Result:=SelectCell(DCol,DRow); end;