Skip to content

Commit 55c41c7

Browse files
morganlovatotobiasdiez
authored andcommitted
Fixes #4437 (#4531)
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
1 parent c94398f commit 55c41c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jabref/gui/preferences/TableColumnsTab.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -314,10 +314,10 @@ public TableColumnsTab(JabRefPreferences prefs, JabRefFrame frame) {
314314
builder.add(tabPanel, 1, 5);
315315

316316
Button buttonWidth = new Button("Update to current column widths");
317-
buttonWidth.setPrefSize(200, 30);
317+
buttonWidth.setPrefSize(300, 30);
318318
buttonWidth.setOnAction(e->new UpdateWidthsAction());
319319
Button buttonOrder = new Button("Update to current column order");
320-
buttonOrder.setPrefSize(200, 30);
320+
buttonOrder.setPrefSize(300, 30);
321321
buttonOrder.setOnAction(e->new UpdateOrderAction());
322322
builder.add(buttonWidth, 1, 6);
323323
builder.add(buttonOrder, 1, 7);

0 commit comments

Comments
 (0)