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 {