From 08dd438d66c33decf5b54e4c1a62b1acf1815b2e Mon Sep 17 00:00:00 2001 From: Rob Greene Date: Sat, 5 Mar 2022 17:58:07 -0600 Subject: [PATCH] Correcting ProDOS date width for long file listings (showed in ac and acx). --- .../applecommander/storage/os/prodos/ProdosFormatDisk.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ac-api/src/main/java/com/webcodepro/applecommander/storage/os/prodos/ProdosFormatDisk.java b/lib/ac-api/src/main/java/com/webcodepro/applecommander/storage/os/prodos/ProdosFormatDisk.java index 102ca49..7a091c0 100644 --- a/lib/ac-api/src/main/java/com/webcodepro/applecommander/storage/os/prodos/ProdosFormatDisk.java +++ b/lib/ac-api/src/main/java/com/webcodepro/applecommander/storage/os/prodos/ProdosFormatDisk.java @@ -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"));