GridPrinter: Fix grid titles missing when there are no fixedcols.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8636 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2022-12-06 21:42:17 +00:00
parent 402b0720c0
commit 205529f52c

View File

@ -864,7 +864,7 @@ begin
exit;
lGrid := TGridAccess(FGrid);
if lGrid.Columns.Enabled and (FFixedCols > 0) and (ACol >= FFixedCols) and (ARow = 0) and (FFixedRows > 0) then
if lGrid.Columns.Enabled and (ACol >= FFixedCols) and (ARow = 0) and (FFixedRows > 0) then
begin
col := lGrid.Columns[ACol - FFixedCols];
Result := col.Title.Caption;