Skip to content

Commit

Permalink
Fix the column size of entries number in groups tree
Browse files Browse the repository at this point in the history
  • Loading branch information
alescrocaro committed Dec 4, 2022
1 parent a877678 commit 4c62e28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/jabref/gui/groups/GroupTreeView.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ private void createNodes() {
mainColumn.setResizable(true);
numberColumn = new TreeTableColumn<>();
numberColumn.getStyleClass().add("numberColumn");
numberColumn.setMinWidth(40d);
numberColumn.setMaxWidth(40d);
numberColumn.setPrefWidth(40d);
numberColumn.setMinWidth(50d);
numberColumn.setMaxWidth(60d);
numberColumn.setPrefWidth(50d);
numberColumn.setResizable(false);
expansionNodeColumn = new TreeTableColumn<>();
expansionNodeColumn.getStyleClass().add("expansionNodeColumn");
Expand Down

0 comments on commit 4c62e28

Please sign in to comment.