mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Poorly adjusted columns in Synchronize Directories (fixes #371)
This commit is contained in:
parent
b6e156e88c
commit
8d57c7cc58
2 changed files with 211 additions and 481 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -193,6 +193,9 @@ type
|
|||
private
|
||||
property SortIndex: Integer read FSortIndex write SetSortIndex;
|
||||
property Commands: TFormCommands read FCommands implements IFormCommands;
|
||||
protected
|
||||
procedure DoAutoAdjustLayout(const AMode: TLayoutAdjustmentPolicy;
|
||||
const AXProportion, AYProportion: Double); override;
|
||||
public
|
||||
{ public declarations }
|
||||
constructor Create(AOwner: TComponent;
|
||||
|
|
@ -1820,6 +1823,13 @@ begin
|
|||
);
|
||||
end;
|
||||
|
||||
procedure TfrmSyncDirsDlg.DoAutoAdjustLayout(const AMode: TLayoutAdjustmentPolicy;
|
||||
const AXProportion, AYProportion: Double);
|
||||
begin
|
||||
inherited DoAutoAdjustLayout(AMode, AXProportion, AYProportion);
|
||||
RecalcHeaderCols;
|
||||
end;
|
||||
|
||||
constructor TfrmSyncDirsDlg.Create(AOwner: TComponent; FileView1,
|
||||
FileView2: TFileView);
|
||||
var
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue