mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-11 09:49:07 +00: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;
|
||||
});
|
||||
|
||||
var s = _solid ? "solid" : "not solid";
|
||||
var s = _solid ? " solid," : "";
|
||||
|
||||
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)}";
|
||||
archiveSizeU.Content = $"Uncompressed size {sizeU.ToPrettySize(2)}";
|
||||
}
|
||||
|
Reference in New Issue
Block a user