From f7e47d3cac687234f5d197197a045e990549abdb Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 26 Sep 2016 17:27:03 -0700 Subject: [PATCH] [DatFile] Right align pure numbers in HTML --- SabreTools.Helper/Objects/Dat/DatFile.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/SabreTools.Helper/Objects/Dat/DatFile.cs b/SabreTools.Helper/Objects/Dat/DatFile.cs index 46f56b4f..ce2bf5db 100644 --- a/SabreTools.Helper/Objects/Dat/DatFile.cs +++ b/SabreTools.Helper/Objects/Dat/DatFile.cs @@ -4430,20 +4430,20 @@ namespace SabreTools.Helper case StatOutputFormat.HTML: line = "\t\t\t" + HttpUtility.HtmlEncode(FileName) + "" + "" + Style.GetBytesReadable(TotalSize) + "" - + "" + (game == -1 ? Files.Count : game) + "" - + "" + RomCount + "" - + "" + DiskCount + "" - + "" + CRCCount + "" - + "" + MD5Count + "" - + "" + SHA1Count + ""; + + "" + (game == -1 ? Files.Count : game) + "" + + "" + RomCount + "" + + "" + DiskCount + "" + + "" + CRCCount + "" + + "" + MD5Count + "" + + "" + SHA1Count + ""; if (baddumpCol) { - line += "" + BaddumpCount + ""; + line += "" + BaddumpCount + ""; } if (nodumpCol) { - line += "" + NodumpCount + ""; + line += "" + NodumpCount + ""; } line += "\n";