避免 TwoLineListItem 中标签挤压标题 (#5474)

This commit is contained in:
Glavo
2026-02-07 18:58:56 +08:00
committed by GitHub
parent d9b31ffd18
commit 359a90636a

View File

@@ -171,6 +171,7 @@ public class TwoLineListItem extends VBox {
scrollPane.setHbarPolicy(ScrollPane.ScrollBarPolicy.NEVER);
scrollPane.setVbarPolicy(ScrollPane.ScrollBarPolicy.NEVER);
FXUtils.onChangeAndOperate(tagsBox.heightProperty(), height -> FXUtils.setLimitHeight(scrollPane, height.doubleValue()));
scrollPane.setPrefWidth(50);
firstLine.getChildren().setAll(lblTitle, scrollPane);
}
return tags;