diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadListPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadListPage.java index c0f668be6e..93c71f32bc 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadListPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadListPage.java @@ -525,7 +525,7 @@ protected ModDownloadListPageSkin(DownloadListPage control) { listView.setSelectionModel(new NoneMultipleSelectionModel<>()); // ListViewBehavior would consume ESC pressed event, preventing us from handling it, so we ignore it here ignoreEvent(listView, KeyEvent.KEY_PRESSED, e -> e.getCode() == KeyCode.ESCAPE); - + listView.setFixedCellSize(60); listView.setCellFactory(x -> new ListCell<>() { private static final Insets PADDING = new Insets(9, 9, 0, 9);