LCL, Grids: fix customgrid autoadjustcolumns, from AlexeyT

git-svn-id: trunk@61242 -
This commit is contained in:
jesus 2019-05-18 22:35:20 +00:00
parent 6f4a672236
commit 482649c453

View File

@ -9925,7 +9925,7 @@ procedure TCustomGrid.AutoAdjustColumns;
var
i: Integer;
begin
For i:=0 to ColCount do
For i:=0 to ColCount-1 do
AutoAdjustColumn(i);
end;