forked from j62/ctbrec
Set insets of buttons in the top bar to 5
This commit is contained in:
parent
a763162963
commit
280b0a30b7
|
@ -224,10 +224,13 @@ public class RecordedModelsTab extends Tab implements TabSelectionListener {
|
|||
"press ENTER to confirm a suggested site name"));
|
||||
BorderPane.setMargin(addModelBox, new Insets(5));
|
||||
addModelButton.setOnAction(this::addModel);
|
||||
addModelButton.setPadding(new Insets(5));
|
||||
addModelBox.getChildren().addAll(modelLabel, model, addModelButton, pauseAll, resumeAll);
|
||||
HBox.setMargin(pauseAll, new Insets(0, 0, 0, 20));
|
||||
pauseAll.setOnAction(this::pauseAll);
|
||||
resumeAll.setOnAction(this::resumeAll);
|
||||
pauseAll.setPadding(new Insets(5));
|
||||
resumeAll.setPadding(new Insets(5));
|
||||
|
||||
HBox filterContainer = new HBox();
|
||||
filterContainer.setSpacing(0);
|
||||
|
|
Loading…
Reference in New Issue