mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Bug [0001751] Size is padding with extra spaces at the left #2
This commit is contained in:
parent
acaeecbd3c
commit
653f313e9d
1 changed files with 2 additions and 2 deletions
|
|
@ -376,11 +376,11 @@ begin
|
|||
Result:= FloatToStrF(FloatSize / 1024, ffFixed, 15, Number) + ' K'
|
||||
end
|
||||
else
|
||||
Result:= IntToStr(iSize);
|
||||
Result:= Format('%.0n', [FloatSize]);
|
||||
end;
|
||||
fsfByte:
|
||||
begin
|
||||
Result:= IntToStr(iSize);
|
||||
Result:= Format('%.0n', [FloatSize]);
|
||||
end;
|
||||
fsfKilo:
|
||||
begin
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue