fix: ModDownloadListPage ListView should fill the blank.

This commit is contained in:
huanghongxun
2021-08-04 12:12:20 +08:00
parent cb03d9841d
commit 134f96be08

View File

@@ -138,11 +138,12 @@ public class ModDownloadListPage extends Control implements DecoratorPage, Versi
protected ModDownloadListPageSkin(ModDownloadListPage control) { protected ModDownloadListPageSkin(ModDownloadListPage control) {
super(control); super(control);
VBox pane = new VBox(); BorderPane pane = new BorderPane();
GridPane searchPane = new GridPane(); GridPane searchPane = new GridPane();
pane.setTop(searchPane);
searchPane.getStyleClass().addAll("card"); searchPane.getStyleClass().addAll("card");
VBox.setMargin(searchPane, new Insets(10, 10, 0, 10)); BorderPane.setMargin(searchPane, new Insets(10, 10, 0, 10));
ColumnConstraints column1 = new ColumnConstraints(); ColumnConstraints column1 = new ColumnConstraints();
column1.setPercentWidth(50); column1.setPercentWidth(50);
@@ -229,6 +230,7 @@ public class ModDownloadListPage extends Control implements DecoratorPage, Versi
} }
SpinnerPane spinnerPane = new SpinnerPane(); SpinnerPane spinnerPane = new SpinnerPane();
pane.setCenter(spinnerPane);
{ {
spinnerPane.loadingProperty().bind(getSkinnable().loadingProperty()); spinnerPane.loadingProperty().bind(getSkinnable().loadingProperty());
spinnerPane.failedReasonProperty().bind(Bindings.createStringBinding(() -> { spinnerPane.failedReasonProperty().bind(Bindings.createStringBinding(() -> {
@@ -285,8 +287,6 @@ public class ModDownloadListPage extends Control implements DecoratorPage, Versi
}); });
} }
pane.getChildren().setAll(searchPane, spinnerPane);
getChildren().setAll(pane); getChildren().setAll(pane);
} }