Skip to content

Commit

Permalink
Merge pull request #2236 from sepinf-inc/FixReportDialogRowHeight
Browse files Browse the repository at this point in the history
Minor UI fix: adjust row height based on icon size in report dialog
  • Loading branch information
lfcnassif authored May 31, 2024
2 parents d6e8b80 + 4e7b82b commit 254d7af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions iped-app/src/main/java/iped/app/ui/ReportDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ public void updateList() {
table = new JTable(tableModel);
table.getColumnModel().getColumn(0).setMaxWidth(20);
table.getColumnModel().getColumn(2).setMaxWidth(150);
table.setRowHeight(IconManager.getIconSize());

tableModel.addTableModelListener(this);
scrollPane = new JScrollPane(table);

Expand Down

0 comments on commit 254d7af

Please sign in to comment.