fix: 修复版本设置页面滚动条总是显示的问题 (#5379)

Fix 5377
This commit is contained in:
Dime
2026-02-01 15:15:35 +08:00
committed by GitHub
parent 0adf4fcf32
commit 5a518cec03

View File

@@ -114,7 +114,7 @@ public final class VersionSettingsPage extends StackPane implements DecoratorPag
ScrollPane scrollPane = new ScrollPane();
scrollPane.setFitToHeight(true);
scrollPane.setFitToWidth(true);
scrollPane.setVbarPolicy(ScrollPane.ScrollBarPolicy.ALWAYS);
scrollPane.setVbarPolicy(ScrollPane.ScrollBarPolicy.AS_NEEDED);
getChildren().setAll(scrollPane);
rootPane = new VBox();