Skip to content

Commit 35a7ad0

Browse files
committed
do not show text when not SOLID compressed
1 parent bcec7ff commit 35a7ad0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

QuickLook.Plugin/QuickLook.Plugin.ArchiveViewer/ArchiveInfoPanel.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ private void LoadArchive(string path)
5555
sizeU += e.Value.Size;
5656
});
5757

58-
var s = _solid ? "solid" : "not solid";
58+
var s = _solid ? " solid," : "";
5959

6060
archiveCount.Content =
61-
$"{_type} archive, {s}, {folder - 1} folders and {files} files"; // do not count root node
61+
$"{_type} archive,{s} {folder - 1} folders and {files} files"; // do not count root node
6262
archiveSizeC.Content = $"Compressed size {_totalZippedSize.ToPrettySize(2)}";
6363
archiveSizeU.Content = $"Uncompressed size {sizeU.ToPrettySize(2)}";
6464
}

0 commit comments

Comments
 (0)