mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: In column auto size
This commit is contained in:
parent
c2db45da9a
commit
fe1d75950b
1 changed files with 6 additions and 1 deletions
|
|
@ -1289,7 +1289,12 @@ end;
|
|||
procedure TDrawGridEx.Resize;
|
||||
begin
|
||||
inherited Resize;
|
||||
UpdateColWidths;
|
||||
if Visible and not (csLoading in ComponentState) then
|
||||
begin
|
||||
Include(ComponentState, csLoading);
|
||||
UpdateColWidths;
|
||||
Exclude(ComponentState, csLoading);
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TDrawGridEx.HeaderSized(IsColumn: Boolean; Index: Integer);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue