From 6d45a54ccd796bb0a72e23e61cedb0f259ddff2e Mon Sep 17 00:00:00 2001 From: Kelly Kelly Date: Wed, 31 Jul 2019 15:16:50 -0400 Subject: [PATCH] changes based on review comment --- .../sleuthkit/autopsy/corecomponents/DataResultViewerTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/corecomponents/DataResultViewerTable.java b/Core/src/org/sleuthkit/autopsy/corecomponents/DataResultViewerTable.java index 1767ac9f01..71f801282b 100644 --- a/Core/src/org/sleuthkit/autopsy/corecomponents/DataResultViewerTable.java +++ b/Core/src/org/sleuthkit/autopsy/corecomponents/DataResultViewerTable.java @@ -579,7 +579,7 @@ public class DataResultViewerTable extends AbstractDataResultViewer { int columnWidth = columnWidths.get(column); if(cntMaxSizeColumns > 0) { - if(columnWidth >= 300) { + if(columnWidth >= ((column == 0) ? 350 : 300)) { columnWidth += extraWidth; } } else {