mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
UPD: PackInfoDlg - file size formatting
(cherry picked from commit 45402ba3d1)
This commit is contained in:
parent
d35debe202
commit
451517832e
1 changed files with 3 additions and 3 deletions
|
|
@ -79,7 +79,7 @@ uses
|
|||
LCLType,
|
||||
LCLVersion,
|
||||
{$ENDIF}
|
||||
uFileSourceOperationTypes;
|
||||
uDCUtils, uFileSourceOperationTypes;
|
||||
|
||||
function ShowPackInfoDlg(aFileSource: IArchiveFileSource; aFile: TFile): TFileSourceExecuteOperationResult;
|
||||
begin
|
||||
|
|
@ -131,8 +131,8 @@ begin
|
|||
|
||||
if not aFile.IsDirectory then
|
||||
begin
|
||||
lblPackedOrgSize.Caption := IntToStr(aFile.Size);
|
||||
lblPackedPackedSize.Caption := IntToStr(aFile.CompressedSize);
|
||||
lblPackedOrgSize.Caption := IntToStrTS(aFile.Size);
|
||||
lblPackedPackedSize.Caption := IntToStrTS(aFile.CompressedSize);
|
||||
lblPackedOrgSize.Visible := aFile.SizeProperty.IsValid;
|
||||
lblPackedPackedSize.Visible := aFile.CompressedSizeProperty.IsValid;
|
||||
if (aFile.Size > 0) and aFile.CompressedSizeProperty.IsValid then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue