mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-12-23 02:00:26 +08:00
do not show text when not SOLID compressed
This commit is contained in:
@@ -55,10 +55,10 @@ namespace QuickLook.Plugin.ArchiveViewer
|
|||||||
sizeU += e.Value.Size;
|
sizeU += e.Value.Size;
|
||||||
});
|
});
|
||||||
|
|
||||||
var s = _solid ? "solid" : "not solid";
|
var s = _solid ? " solid," : "";
|
||||||
|
|
||||||
archiveCount.Content =
|
archiveCount.Content =
|
||||||
$"{_type} archive, {s}, {folder - 1} folders and {files} files"; // do not count root node
|
$"{_type} archive,{s} {folder - 1} folders and {files} files"; // do not count root node
|
||||||
archiveSizeC.Content = $"Compressed size {_totalZippedSize.ToPrettySize(2)}";
|
archiveSizeC.Content = $"Compressed size {_totalZippedSize.ToPrettySize(2)}";
|
||||||
archiveSizeU.Content = $"Uncompressed size {sizeU.ToPrettySize(2)}";
|
archiveSizeU.Content = $"Uncompressed size {sizeU.ToPrettySize(2)}";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user