Skip to content

Commit

Permalink
'#1866: Minor adjustment in bookmark icon column width.
Browse files Browse the repository at this point in the history
  • Loading branch information
wladimirleite committed Oct 2, 2023
1 parent 0d3ce0f commit ba2af85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iped-app/src/main/java/iped/app/ui/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -1425,7 +1425,7 @@ private void updateIconContainerUI(JComponent comp, int size, boolean updateUI)
// Set bookmark icons column width based on current icon size
for (int i = 0; i < table.getColumnCount(); i++) {
if (table.getColumnName(i).equals(BookmarkIcon.columnName)) {
table.getColumnModel().getColumn(i).setPreferredWidth(size + 2);
table.getColumnModel().getColumn(i).setPreferredWidth(size + 4);
}
}
}
Expand Down

0 comments on commit ba2af85

Please sign in to comment.