Skip to content

Commit

Permalink
Fixes JabRef#4437
Browse files Browse the repository at this point in the history
Changed the sizes of buttons "Update to current column widths" and "Update to current column order"

There is still more to fix in this issue:
The Field name is not editable
The value in Field name is not identical with table header
  • Loading branch information
morganlovato committed Dec 6, 2018
1 parent c94398f commit 0918c1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/jabref/gui/preferences/TableColumnsTab.java
Original file line number Diff line number Diff line change
Expand Up @@ -314,10 +314,10 @@ public TableColumnsTab(JabRefPreferences prefs, JabRefFrame frame) {
builder.add(tabPanel, 1, 5);

Button buttonWidth = new Button("Update to current column widths");
buttonWidth.setPrefSize(200, 30);
buttonWidth.setPrefSize(300, 30);
buttonWidth.setOnAction(e->new UpdateWidthsAction());
Button buttonOrder = new Button("Update to current column order");
buttonOrder.setPrefSize(200, 30);
buttonOrder.setPrefSize(300, 30);
buttonOrder.setOnAction(e->new UpdateOrderAction());
builder.add(buttonWidth, 1, 6);
builder.add(buttonOrder, 1, 7);
Expand Down

0 comments on commit 0918c1d

Please sign in to comment.