You've already forked lazarus-ccr
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:
@ -864,7 +864,7 @@ begin
|
|||||||
exit;
|
exit;
|
||||||
|
|
||||||
lGrid := TGridAccess(FGrid);
|
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
|
begin
|
||||||
col := lGrid.Columns[ACol - FFixedCols];
|
col := lGrid.Columns[ACol - FFixedCols];
|
||||||
Result := col.Title.Caption;
|
Result := col.Title.Caption;
|
||||||
|
Reference in New Issue
Block a user