forked from j62/ctbrec
1
0
Fork 0

Make preferred size of preferences view taller to avoid clipping

This commit is contained in:
0xb00bface 2020-10-17 13:56:04 +02:00
parent e49ef57f21
commit 12033e9923
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ public class SettingsTab extends Tab implements TabSelectionListener {
);
Region preferencesView = prefs.getView();
preferencesView.setMinSize(800, 400);
preferencesView.setPrefSize(1280, 720);
preferencesView.setPrefSize(1280, 960);
ScrollPane scrollPane = new ScrollPane(preferencesView);
GridPane container = new GridPane();
container.add(scrollPane, 0, 0);