Correcting ProDOS date width for long file listings (showed in ac and

acx).
This commit is contained in:
Rob Greene 2022-03-05 17:58:07 -06:00
parent d8cbd263dd
commit 08dd438d66
1 changed files with 2 additions and 2 deletions

View File

@ -475,9 +475,9 @@ public class ProdosFormatDisk extends FormattedDisk {
FileColumnHeader.ALIGN_CENTER, "directory"));
list.add(new FileColumnHeader(textBundle.get("Blocks"), 3,
FileColumnHeader.ALIGN_RIGHT, "blocks"));
list.add(new FileColumnHeader(textBundle.get("Modified"), 10,
list.add(new FileColumnHeader(textBundle.get("Modified"), 16,
FileColumnHeader.ALIGN_CENTER, "modified"));
list.add(new FileColumnHeader(textBundle.get("ProdosFormatDisk.Created"), 10,
list.add(new FileColumnHeader(textBundle.get("ProdosFormatDisk.Created"), 16,
FileColumnHeader.ALIGN_CENTER, "created"));
list.add(new FileColumnHeader(textBundle.get("ProdosFormatDisk.Length"), 10,
FileColumnHeader.ALIGN_RIGHT, "size"));