mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
FIX: Bug - Drive_Size shown instead of free space on drive
This commit is contained in:
parent
3b729c9306
commit
7746b26047
1 changed files with 1 additions and 1 deletions
|
|
@ -5927,7 +5927,7 @@ begin
|
|||
end;
|
||||
lblDriveInfo.Hint := Format(rsFreeMsg, [cnvFormatFileSize(FreeSize, uoscHeaderFooter), cnvFormatFileSize(TotalSize, uoscHeaderFooter)]); //It's not an "operation" but most probably the closest wanted form.
|
||||
if gShortFormatDriveInfo then
|
||||
lblDriveInfo.Caption := Format(rsFreeMsgShort, [cnvFormatFileSize(TotalSize, uoscHeaderFooter)])
|
||||
lblDriveInfo.Caption := Format(rsFreeMsgShort, [cnvFormatFileSize(FreeSize, uoscHeaderFooter)])
|
||||
else
|
||||
lblDriveInfo.Caption := lblDriveInfo.Hint;
|
||||
sboxDrive.Hint := lblDriveInfo.Hint;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue