Skip to content

Commit

Permalink
Minor UI fix: adjust row height based on icon size in report dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
wladimirleite committed May 31, 2024
1 parent d6e8b80 commit 4e7b82b
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 4e7b82b

Please sign in to comment.